上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 95 下一页
摘要: Shell脚本内单引号都认为是普通字符不会输出变量 示例如下 # 定义变量 # name="minseo" # 使用双引号输出为变量 # echo "$name" minseo # 使用单引号输出为原始字符 # echo '$name' $name 有些格式例如json在shell只能使用单引号包裹 阅读全文
posted @ 2024-03-01 16:31 minseo 阅读(793) 评论(0) 推荐(0) 编辑
摘要: 需求 需要把一批次的IP地址和MAC地址进行绑定,如果该IP地址没有和MAC对应则输出 脚本如下 # cat check_arp.sh #!/bin/bash # 检查ip地址和mac是否对应 IpList=() MacList=("<incomplete>" "<incomplete>" "<in 阅读全文
posted @ 2024-02-28 16:31 minseo 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.56yhz.com/md/docker_deployment/zh-CN 安装Docker 不详述 配置国内加速器 不详述 安装docker-compose 不详述 安装git 不详述 开始部署 拉取代码 #### 拉取代码 git clone https://git 阅读全文
posted @ 2024-02-28 11:58 minseo 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.jb51.net/article/268033.htm 阅读全文
posted @ 2024-02-23 16:08 minseo 阅读(201) 评论(0) 推荐(0) 编辑
摘要: Rocky9和CentOSStream9设置固定IP地址和CentOS不一样设置 设置以下文件 # cat /etc/NetworkManager/system-connections/ens3.nmconnection [connection] id=ens3 uuid=322d81cf-5218 阅读全文
posted @ 2024-02-23 10:52 minseo 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 参考: https://zhuanlan.zhihu.com/p/568513293 使用Jenkins构建时使用的用户为jenkins 在使用docker命令时会报以下错误 ERROR: permission denied while trying to connect to the Docker 阅读全文
posted @ 2024-02-23 10:31 minseo 阅读(440) 评论(0) 推荐(0) 编辑
摘要: Jenkins需要从一台主机换到另外一台主机怎么迁移数据 两台主机的Jenkins版本需要保持一致 安装Jenkins # sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins. 阅读全文
posted @ 2024-02-23 10:27 minseo 阅读(253) 评论(0) 推荐(0) 编辑
摘要: Jenkins版本老了会在页面提示升级 下载最新的war包,下载地址 https://ftp-nyc.osuosl.org/pub/jenkins/war-stable/ 下载war包 本次下载目前最新版本2.440.1 # wget https://ftp-nyc.osuosl.org/pub/j 阅读全文
posted @ 2024-02-22 16:53 minseo 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 监控程序 常见监控软件 Zabbix Nagios Cacti Prometheus Open-falcon Nightingale 监控对比 监控内容一体化 阅读全文
posted @ 2024-02-21 18:07 minseo 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/qq_36380748/article/details/118762195 KVM虚拟机启动报错 Image is corrupt; cannot be opened read/write 原因:意外断电导致虚拟磁盘损坏,使用以下命令修复qcow2 阅读全文
posted @ 2024-02-20 11:13 minseo 阅读(89) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 95 下一页