上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 48 下一页
摘要: split作用:把字符串变成列表,这个字符串必须是多行文字。如果是单行文字或一个单词是不行的,实例操作如下: In [46]: output=subprocess.check_output(['df','-h']) In [60]: print(output) ... 阅读全文
posted @ 2019-01-31 16:33 effortsing 阅读(223) 评论(0) 推荐(0) 编辑
摘要: subprocess.call 是不能作为赋值的,需要用到 subprocess.check_output 函数,而且如果要引用赋值就必须使用subprocess.call(['echo',line])这种形式。 实例一、 对于纯字符串操作如下: In [42]: import subprocess In [101]: subprocess.call(['kubectl','get','... 阅读全文
posted @ 2019-01-31 15:53 effortsing 阅读(8460) 评论(0) 推荐(0) 编辑
摘要: k8s开启cadvisor http 服务 cadvisor介绍: Google的 cAdvisor 是另一个知名的开源容器监控工具。 只需在宿主机上部署cAdvisor容器,用户就可通过Web界面或REST服务访问当前节点和容器的性能数据(CPU、内存、网络、磁盘、文件系统等等),非常详细。 默认cAdvisor是将数据缓存在内存中,数据展示能力有限;它也提供不同的持... 阅读全文
posted @ 2019-01-31 09:31 effortsing 阅读(7060) 评论(4) 推荐(0) 编辑
摘要: Paramiko模块使用 实现目的:192.168.0.61通过Paramiko模块登录192.168.0.63 一、下载安装 由于 paramiko 模块内部依赖pycrypto,所以先下载安装pycrypto pip install pycrypto pip install paramiko 二、模块使用 1、SSHClient 用于连接远程服务器并执行基本命令 (1)基于... 阅读全文
posted @ 2019-01-31 08:22 effortsing 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1、复制单个文件 1、把home下的test.yml复制到root目录下 In [43]: import shutil In [42]: shutil.copy('/home/test.yml','/root/') O... 阅读全文
posted @ 2019-01-30 20:47 effortsing 阅读(1505) 评论(0) 推荐(1) 编辑
摘要: 1、用shutil移动文件,import shutil shutil.move('/root/test.yaml','/home/') shutil.move('/root... 阅读全文
posted @ 2019-01-30 20:01 effortsing 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 默认解压到当前目录 import shutil shutil.unpack_archive('/root/redis-3.2.3.tar.gz') 解压到home目录下 import shutil shutil.unpack_archive('/root/redis-3.2.3.tar.gz','/home/') 阅读全文
posted @ 2019-01-30 17:50 effortsing 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1、准备hosts模板 mkdir -p /k8s/profile cat >/k8s/profile/hosts hostname.py <<EOF #!/usr/bin/python #-*- codinig: UTF-8 -*- from __future__ import print_function import os import shutil import tarfile i... 阅读全文
posted @ 2019-01-30 16:27 effortsing 阅读(651) 评论(0) 推荐(0) 编辑
摘要: ansible加速 试过不管用,反而更慢 cat > /root/.ssh/config <<EOF Host * Compression yes ServerAliveInterval 60 ServerAliveCountMax 5 ControlMaster auto ControlPath ~/.ssh/sockets/%r@%h-%p ControlPersi... 阅读全文
posted @ 2019-01-30 14:54 effortsing 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 查看状态: systemctl status sshd.service 启动服务: systemctl start sshd.service 重启服务: systemctl restart sshd.service 开机自启: systemctl enable sshd.service 阅读全文
posted @ 2019-01-30 13:05 effortsing 阅读(2932) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 48 下一页