姓名:刘浩然。 2020年大目标Python
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页
摘要: 问题 The authenticity of host '10.4.172.67 (10.4.172.67)' can't be established.ECDSA key fingerprint is SHA256:G35i5rnAi7lG5MI5T3k+eFYrZQjWXvxhoO55CAcUI 阅读全文
posted @ 2019-02-28 10:47 pluto2charon 阅读(4300) 评论(0) 推荐(0) 编辑
摘要: 一.概述 环境: 因为公司需要监控远程客户机,但server端无法主动连接agent端,客户端可以连接公司ip 公司有固定ip,可以开放某个端口给zabbixserver,客户机agent端可以主动通过外网连接公司服务器,但没有固定ip 查过zabbix,可以有多种方法设定agent端主动连接ser 阅读全文
posted @ 2019-02-27 20:43 pluto2charon 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 一.配置文件优化 server端配置文件添加如下 二、zabbix_server配置文件详解 三、zabbix_agent配置文件详解 StartAgents=0 #客户端agent模式,仅为主动模式,值为0的时候,被监控端的zabbix_agentd 不监听本地端口,所以无法在 netstat - 阅读全文
posted @ 2019-02-27 20:19 pluto2charon 阅读(370) 评论(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) 编辑
摘要: python面向对象中的反射:通过字符串的形式操作对象相关的属性。python中的一切事物都是对象(都可以使用反射) 四个可以实现自省的函数 下列方法适用于类和对象(一切皆对象,类本身也是一个对象) hasattr、getattr、setattr、delattr 为什么用反射之反射的好处 好处一:实 阅读全文
posted @ 2019-02-26 16:19 pluto2charon 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 前言 针对linux上的用户,如果用户连续3次登录失败,就锁定该用户,几分钟后该用户再自动解锁。Linux有一个pam_tally2.so的PAM模块,来限定用户的登录失败次数,如果次数达到设置的阈值,则锁定用户。 PAM的配置文件介绍 PAM配置文件有两种写法: 一种是写在/etc/pam.con 阅读全文
posted @ 2019-02-26 11:16 pluto2charon 阅读(732) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 24 下一页