简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
转自:http://www.ttlsa.com/zabbix/zabbix-lld-monitor-disk-io-stats/Linux io监控的方式很多,这次使用zabbix对Linux磁盘IO做一个监控。需要下载三个文件,文章后面我会提供一个下载地址给大家,跟着凉白开的步骤来~discover_disk.pl找出当前系统的分区,例如sda、sdb、x
I. 升级pythonhttps://blog.phpgao.com/pip-easy_install-setuptool.html本次选择版本2.7.8,需要其他版本请移步:官方FTPwget https://www.python.org/ftp/python/2.7.8/Python-2.7.8.tar.xz#如果tar版本过低,请使用xz -d xx.tar.xz 然后
1.socket API#include主机字节 => 网络字节unsigned short int htons(unsigned short int hostshrot);网络字节 => 主机字节unsigned short int ntohs(unsigned short int netshrot);//tcp/ip 协议簇专用socket结构体struct so
参考:http://www.360doc.com/content/11/1119/15/2660674_165748138.shtmlhttp://blog.csdn.net/my2010sam/article/details/9877717#!/usr/bin/env python'''epoll实现服务器时,需要用到register()和unregister()方法
#!/usr/bin/env python#--coding:utf8--'''首先创建一个服务器线程,并在后台启动。然后启动三个测试客户端,向服务器发送消息。作为响应,服务器把消息回显给客户端。在服务器请求处理类的handle()方法中,我们取回了当前线程的信息并将其打印出来,这些信息在每次客户端连接中都不同。'''import os,socket,threading,Socke
server:#!/usr/bin/env python#--coding:utf8--'''简单的回显客户端/服务器应用1.先创建一个TCP套接字2.启用重用地址3.套接字绑定在本地设备的指定端口4.监听阶段,把backlog参数传入listen()方法中5.服务器监听多个客户端。等待客户端连接,向服务器发送一些数据。收到数据后,回显数据给客户端。argparse是pyth
#!/usr/bin/env python#This requires Python2.5 or greaterfrom threading import Threadimport subprocessfrom Queue import Queueimport renum_ping_threads = 5num_arp_threads = 5in_queue = Queue()o
#!/usr/bin/env python#--coding:utf8--'''http://www.cnblogs.com/onlyfu/p/4926351.html'''from fabric.api import *from fabric.colors import *from fabric.context_managers import *from fabric.contr
队列,多线程,os模块,windows ctypes模块#!/usr/bin/env python#coding=utf-8import os,sys,ctypesfrom threading import Threadfrom Queue import Queuenum_threads = 5in_queue = Queue()#遍历磁盘def find_disk():
参考:http://blog.csdn.net/yumushui/article/details/41645469在MySQL数据库中,在进行数据迁移和从库只读状态设置时,都会涉及到只读状态和Master-slave的设置和关系。经过实际测试,对于MySQL单实例数据库和master库,如果需要设置为只读状态,需要进行如下操作和设置:将MySQL设置为只读状态的命令: