相关文章
helm的更新部署命令
helm list -n test 查看test 空间下有那些helm安装的程序helm uninstall -n test mysql卸载mysqlhelm -n test install mysql ....
shell获取当前文件路径
curPath=$(readlink -f "$(dirname "$0")") echo $curPath #或者 curPath=$(dirname $(readli...
python ssh 登录服务器
import paramikossh = paramiko.SSHClient()ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())ssh.connect('192.1...
shell 替换文件配置
sed -i "s/enforcing/disabled/g" /etc/selinux/config...
清空swap 空间和清空 系统未释放的缓存(cache)
查看当前swap分区挂载在哪?swapon -sswapoff /dev/dm-1关闭这个swap 的挂载这个执行需要点时间检查一下swapon -s最下面一行显示全0,表示全部关停重新挂载(不想用swap 可以不挂)将swap...
linux 安全策略关闭
#防火墙关闭systemctl stop firewalld.service#永久关闭防火墙systemctl disable firewalld.service#临时关闭selinuxsetenforce 0#永久关闭sed -i &qu...