摘要:
#!/bin/bash # 定义环境变量 export LANG="en_US.UTF-8" #统一格式化打印输出信息 printMsg(){ echo "$(date +'%Y-%m-%d %H:%M:%S')-----------$1-----------" } #输入参数个数检查 if [ $# -lt 3 ]; then printMsg "脚本参数错误,例如:./s... 阅读全文
摘要:
使用的k8s client包: 使用方式k8sApiUrl为k8s apiserver地址: 然后可以通过kubernetesClent进行RC创建、删除、scale;service创建删除等等操作,另外就是传入执行命令: 阅读全文
摘要:
vi /etc/ssh/sshd_config #注释掉 #PermitRootLogin without-password # Authentication: LoginGraceTime 120 #PermitRootLogin without-password PermitRootLogin yes StrictModes yes #重启服务 service ssh restart ... 阅读全文