上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页
摘要: 问题:移动云服务器,初始化系统后,ifconfig发现网卡eth0没有IP地址了,经过复盘,发现是关闭了NetworkManager,查看network(chkconfig --list),发现也是off。 解决方法一:关闭NetworkManager服务(网上常用方法) [root@test ~] 阅读全文
posted @ 2022-12-01 09:46 Leonardo-li 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1、查看pod(查看其他资源类型的信息只需要把pod换为svc、deployment、configmap=cm、pv、pvc)信息,-o其他选项,wide显示长信息,yaml显示为yaml格式 1.1 查看pod详细信息 kubectl get pod -o wide 1.2 查看pod信息 kub 阅读全文
posted @ 2022-11-30 10:44 Leonardo-li 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1.pv学习mysql-pv.yaml apiVersion: v1 kind: PersistentVolume #申明资源是pv metadata: name: pv-mysql-datadir #pv名称 labels: pv: mysql-datadir #pv标签,pvc关联的名称 spe 阅读全文
posted @ 2022-11-29 21:03 Leonardo-li 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 1.mysqldump备份报错 [root@176-238 bin]# ./mysqldump -uroot -p'123456' --default-character-set=utf8 --opt -R -E confluence > /data/backup/20221109/confluen 阅读全文
posted @ 2022-11-09 18:17 Leonardo-li 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: #创建swap分区 1、创建一个swap文件 cd /var mkdir swap dd if=/dev/zero of=swapfile bs=1024 count=2000000 #count代表创建2G大小,一般swap内存是物理内存的1.5倍。 2、把文件转换为swap文件 #在var目录执 阅读全文
posted @ 2022-11-01 11:05 Leonardo-li 阅读(473) 评论(0) 推荐(0) 编辑
摘要: 1.mysql备份脚本#说明:此备份脚本是mysql部署在宿主机上,然后直接使用mysql命令备份。 #!/bin/bash #mysql_backup#### dbuser="root" dbpassword="123443" dbserver="172.16.33.52" dbname="ope 阅读全文
posted @ 2022-10-31 14:43 Leonardo-li 阅读(2123) 评论(0) 推荐(0) 编辑
摘要: 1.主数据库配置添加 cat /etc/my.cnf 添加: [mysqld] server-id=1 log-bin=master-bin log-slave-updates=true #需要重启mysql服务 docker restart mysql 2.主数据库设置从库复制权限 grant r 阅读全文
posted @ 2022-10-26 11:19 Leonardo-li 阅读(28) 评论(0) 推荐(0) 编辑
摘要: #解决vscode不能补全三方库 https://zhuanlan.zhihu.com/p/549452162 阅读全文
posted @ 2022-10-24 16:02 Leonardo-li 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 1.安装nvidia驱动报错: You appear to be running an X server; please exit X before installing. For further details 2.原因 主要是由于安装远程控制lightgm 导致X-server启动 3.修复 . 阅读全文
posted @ 2022-10-18 16:43 Leonardo-li 阅读(7947) 评论(0) 推荐(0) 编辑
摘要: 1.浏览器报错 2.解决问题 (1) 在nginx http中添加 http { map $http_upgrade $connection_upgrade { default upgrade; '' close; } } #在nginx的websocket中添加以下行 location /ws/ 阅读全文
posted @ 2022-10-18 11:13 Leonardo-li 阅读(332) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页