姓名:刘浩然。 2020年大目标Python
摘要: 一.概述 环境: 因为公司需要监控远程客户机,但server端无法主动连接agent端,客户端可以连接公司ip 公司有固定ip,可以开放某个端口给zabbixserver,客户机agent端可以主动通过外网连接公司服务器,但没有固定ip 查过zabbix,可以有多种方法设定agent端主动连接ser 阅读全文
posted @ 2019-02-27 20:43 pluto2charon 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 一.配置文件优化 server端配置文件添加如下 二、zabbix_server配置文件详解 三、zabbix_agent配置文件详解 StartAgents=0 #客户端agent模式,仅为主动模式,值为0的时候,被监控端的zabbix_agentd 不监听本地端口,所以无法在 netstat - 阅读全文
posted @ 2019-02-27 20:19 pluto2charon 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 我们知道在操作文件对象的时候可以这么写 上述叫做上下文管理协议,即with语句,为了让一个对象兼容with语句,必须在这个对象的类中声明__enter__和__exit__方法 阅读全文
posted @ 2019-02-27 19:47 pluto2charon 阅读(207) 评论(0) 推荐(0) 编辑
摘要: __str__,__repr__,__format__ 阅读全文
posted @ 2019-02-27 17:01 pluto2charon 阅读(178) 评论(0) 推荐(0) 编辑
摘要: __getattr__#不存在的属性访问,触发__getattr__ __getattribute__#无论属性存在与否都触发__getattribute__ __getattribute__和__getattr__结合 阅读全文
posted @ 2019-02-27 15:50 pluto2charon 阅读(95) 评论(0) 推荐(0) 编辑
摘要: isinstance(obj,cls)检查是否obj是否是类 cls 的对象 issubclass(sub, super)检查sub类是否是 super 类的派生类 补充 阅读全文
posted @ 2019-02-27 15:28 pluto2charon 阅读(121) 评论(0) 推荐(0) 编辑
摘要: #__getattr__只有在使用点调用属性且属性不存在的时候才会触发 阅读全文
posted @ 2019-02-27 11:24 pluto2charon 阅读(99) 评论(0) 推荐(0) 编辑