摘要:
部署etcd错误总结 1、conflicting environment variable "ETCD_NAME" is shadowed by corresponding command-line flag (either unset environment variable or disable 阅读全文
摘要:
centos 7 docker 启动了进入一个容器出现如下错误 WARNING: IPv4 forwarding is disabled. Networking will not work. 解决办法: vi /etc/sysctl.conf net.ipv4.ip_forward=1 #添加这段代 阅读全文
摘要:
通过python获取服务器cpu、内存、流量信息 cpu def get_cpu_status(path='/proc/loadavg'): ''' 监控CPU负载 ''' loadavg = {} with open(path, 'r', encoding='utf-8') as f1: list 阅读全文