摘要: zabbix 3.4 监控报错No Such Instance currently exists at this OID 1.首先查看监控的路由器的监控项是否报警 监控主机报错出现这个 No Such Instance currently exists at this OID 2.在zabbix服务 阅读全文
posted @ 2018-07-09 13:39 Mr.zou 阅读(1141) 评论(0) 推荐(0) 编辑
摘要: yum 安装k8s的过程中用了 Ctrl+ z, 然后yum 再也不能使用了: Error: rpmdb open failed 解决方法: rpm --rebuilddb yum clean all su -c "sed -i 's|^#baseurl|baseurl| ; s|^mirrorli 阅读全文
posted @ 2018-07-03 16:31 Mr.zou 阅读(531) 评论(0) 推荐(0) 编辑
摘要: 1.jenkins 项目配置上传 2.jenkins 访问私库下载配置 -X clean install 3.maven 配置文件 /usr/local/maven/conf/settings.xml <?xml version="1.0" encoding="UTF-8"?> <!--Licens 阅读全文
posted @ 2018-07-02 15:34 Mr.zou 阅读(1321) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/fnng/p/3737964.html 写的目的, 加深影响,熟悉开发流程, 开发都是练出来的。 环境 python3.5 windows 7 1.创建项目 项目目录介绍: manage.py : Django项目里面的工具,通过它可以调用djan 阅读全文
posted @ 2018-06-28 16:56 Mr.zou 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 1.RDS 数据日志已经快满了, 导致数据库不能写入,只读。 2. Binlog日志的保存及清理规则 MySQL实例的空间内默认清理binlog日志的规则如下: 实例空间内默认会保存最近18个小时内的binlog文件。 当实例使用空间小于购买空间的90%时,系统会保存购买空间的30%的binlog( 阅读全文
posted @ 2018-06-27 13:56 Mr.zou 阅读(1227) 评论(0) 推荐(0) 编辑
摘要: import json,reimport urllib.requestdef GetLocalIP(): IPInfo = urllib.request.urlopen("http://ip.chinaz.com/getip.aspx").read().decode('utf8') ##获取公网IP的网址 #return IPInfo ##读取所有信息 IP = re.fi... 阅读全文
posted @ 2018-06-27 11:41 Mr.zou 阅读(227) 评论(0) 推荐(0) 编辑
摘要: docker 常用命令运行一个系统容器[root@localhost ~]# docker run -i -t ubuntu /bin/bash 或者 docker run -i -t centos /bin/bash docker run --name centos2 -d -i -t cento 阅读全文
posted @ 2018-06-26 17:47 Mr.zou 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 1.安装工具 dmidecode yum install dmidecode -y 2.使用 dmidecode -t 1 阅读全文
posted @ 2018-06-26 17:43 Mr.zou 阅读(469) 评论(0) 推荐(0) 编辑
摘要: lsof(list open files)是一个列出当前系统打开文件的工具。在linux环境下,任何事物都以文件的形式存在,通过文件不仅仅可以访问常规数据,还可以访问网络连接和硬件。所以,lsof的功能很强大。一般root用户才能执行lsof命令,普通用户可以看见/usr/sbin/lsof命令,但 阅读全文
posted @ 2018-06-25 17:46 Mr.zou 阅读(1817) 评论(0) 推荐(0) 编辑
摘要: Jenkins +svn +maven +tomcat+ ansible 自动化批量部署 一.部署svn yum install subversion 先创建目录 mkdir /home/svn 创建版本库 1 cd /home/svn //先进入svn目录 2svnadmin create /ho 阅读全文
posted @ 2018-06-21 17:49 Mr.zou 阅读(551) 评论(0) 推荐(0) 编辑