上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 95 下一页
摘要: 使用以下命令清理 # sudo sync && echo 3 | sudo tee /proc/sys/vm/drop_caches 清理前后对比 阅读全文
posted @ 2024-02-18 10:56 minseo 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 参考Github: https://github.com/kubernetes/kompose kompose工具用于将docker-compose配置文件转换的k8s可识别的yaml文件 安装 CentOS安装 # yum install epel-release # yum install ko 阅读全文
posted @ 2024-02-07 11:00 minseo 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/ZHY_ERIC/article/details/124470136 MySQL8.0远程连接报错 ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot b 阅读全文
posted @ 2024-02-06 16:50 minseo 阅读(842) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/hengdin/articles/17838930.html docker容器如果需要在开机实现自启动可以在启动的时候加以下参数 --restart=always 例如启动一个MySQL容器需要开机自启则使用以下命令启动容器 # docker 阅读全文
posted @ 2024-02-04 14:38 minseo 阅读(1134) 评论(0) 推荐(1) 编辑
摘要: 使用K8S启动的禅道在一次断电重启之后登录首页提示如下 Base table or view not found: 1932 Table 'zentao.zt_lang' doesn't exist in engine in /apps/zentao/li Pod运行正常,登录Pod查看表确实不存在 阅读全文
posted @ 2024-02-04 09:54 minseo 阅读(31) 评论(0) 推荐(0) 编辑
摘要: redis的镜像默认是没有鉴权的,需要鉴权则需要设置配置文件 下载最新redis镜像 # docker pull redis:7.2.4 设置配置文件和Dockerfile redis配置文件 # cat redis.conf bind 0.0.0.0 port 6379 timeout 0 tcp 阅读全文
posted @ 2024-01-31 16:31 minseo 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 参考: https://zhuanlan.zhihu.com/p/542202680 一,健康检查种类 在kubernetes中,经常会看到健康检查相关的配置。一般有两种健康检查方式:存活性健康检查和可用性健康检查,也叫做存活探针(livenessProbe)或者就绪探针(readinessProb 阅读全文
posted @ 2024-01-30 10:46 minseo 阅读(60) 评论(0) 推荐(0) 编辑
摘要: 使用jenkins构建k8s项目时需要执行kubectl命令 因为使用jenkins使用的用户是jenkins所以在执行kubectl时没有权限,但是在页面报错不会报权限错误 而是报以下错误 error: unable to recognize "k8s/xiaoxing-labs-web-depl 阅读全文
posted @ 2024-01-19 10:25 minseo 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 需要使用nginx部署一个外网文件服务器使用k8s部署 本次需要把一个apk文件映射到外网 前提条件 部署好的k8s集群 部署好的存储集群(glusterfs,NFS) k8s的yaml配置文件 deployment文件 使用以下命令生成再修改 # kubectl run apk-nginx --i 阅读全文
posted @ 2024-01-18 15:55 minseo 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/lin-wang/p/15752834.html KVM虚拟机需要从一台服务器迁移至另外一台服务器 查看磁盘位置并拷贝磁盘 源主机操作 磁盘位置需要和原始位置一致否则需要修改xml配置文件 需要关机否则复制磁盘后主机可能无法启动 # virsh 阅读全文
posted @ 2024-01-10 17:44 minseo 阅读(91) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 95 下一页