姓名:刘浩然。 2020年大目标Python
摘要: 监控集群状态 [4ajr@elk1 scripts]$ cat glusterfs_peer_status.sh #!/bin/bash peer_status=`sudo gluster peer status | grep State | uniq` if [ "State: Peer in C 阅读全文
posted @ 2019-02-03 10:11 pluto2charon 阅读(1019) 评论(0) 推荐(0) 编辑
摘要: [4ajr@elk1 scripts]$ curl 172.30.210.175:9200/_cat/health [4ajr@elk1 scripts]$ cat check_es_healthy.py import commands command = '172.30.210.175:9200/ 阅读全文
posted @ 2019-02-03 10:10 pluto2charon 阅读(295) 评论(0) 推荐(0) 编辑
摘要: [root@localhost ~]# firewall-cmd --state not running [root@localhost ~]# firewall-cmd --state running 放行http和https端口 [root@localhost ~]# firewall-cmd 阅读全文
posted @ 2019-02-03 10:08 pluto2charon 阅读(165) 评论(0) 推荐(0) 编辑
摘要: pvcreate /dev/xvde vgcreate VG00 /dev/xvde lvcreate -l 307199 -n lv_data /dev/VG00 mkfs.xfs /dev/VG00/lv_data blkid /dev/VG00/lv_data vi /etc/fstab 阅读全文
posted @ 2019-02-03 09:49 pluto2charon 阅读(303) 评论(0) 推荐(0) 编辑
摘要: #tar zxvf nginx-1.8.1.tar.gz #cd nginx-1.8.1/ #make && make install #cat /etc/systemd/system/nginx.service [Unit] Description=nginx server daemon Docu 阅读全文
posted @ 2019-02-03 09:48 pluto2charon 阅读(669) 评论(0) 推荐(0) 编辑
摘要: 解决方案 在zabbix_agentd.conf中添加这些。 BufferSend = 10 BufferSize = 150 MaxLinesPerSecond = 100 Timeout = 29 重新启动代理 ps -ef | grep zabbix | grep -v grep | awk 阅读全文
posted @ 2019-01-31 19:19 pluto2charon 阅读(1503) 评论(0) 推荐(0) 编辑
摘要: 一、数字 int() 二、字符串 三、列表 四、元祖 五、字典 六、布尔值 阅读全文
posted @ 2019-01-31 16:58 pluto2charon 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 类:dict #字典是无序的 1、前戏 2、字典的value可以是任何值 3、 列表、字典不能作为字典的key,key值不能重复。 4、字典无序 5、索引方式找到指定元素 6、字典支持del删除 7、for循环 方法: 1、根据序列,创建字典,并指定统一的值 2、根据Key获取值,key不存在,可以 阅读全文
posted @ 2019-01-31 16:41 pluto2charon 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 前戏 • 不能增加或者删除元素 1、书写格式 2、索引 3、切片 4、可以被for循环,可迭代对象 5、转换 6、元祖的一级元素不可修改,删除,增加 阅读全文
posted @ 2019-01-31 15:01 pluto2charon 阅读(150) 评论(0) 推荐(0) 编辑
摘要: list#类 列表概括 #for,while循环 #查找列表中的列表 #字符串转换成列表 #列表转换字符串 灰魔法: list类中提供的方法 1、原来值最后追加append 2、清空列表clear 3、拷贝,浅拷贝copy 4、计算元素出现的次数count 5、扩展原列表、参数:可迭代对象exten 阅读全文
posted @ 2019-01-30 11:54 pluto2charon 阅读(133) 评论(0) 推荐(0) 编辑