05 2019 档案

摘要:zabbix使用fping监控任意两个节点之间的网络质量、丢包率和响应时间 之前的博文 使用zabbix3.0.4的ICMP Ping模版实现对客户端网络状态的监控 https://www.cnblogs.com/reblue520/p/6832059.html 只能监控zabbix server到zabbix_agent之间的网络情况,不能监控任意两点间的网络情况 此次的方法可以监控任意... 阅读全文
posted @ 2019-05-31 17:54 reblue520 阅读(4927) 评论(2) 推荐(0) 编辑
摘要:php5.6.30环境报错Call to undefined function ImageCreate() 编译安装 gd库 发现php5.6.30没有加载gd库 [root@cn_vs_web04:/usr/local/php]# php -i |grep configure Configure 阅读全文
posted @ 2019-05-30 17:39 reblue520 阅读(588) 评论(0) 推荐(0) 编辑
摘要:shell编程系列6--shell中的函数 1.函数介绍 linux shell中的函数和大多数编程语言中的函数一样 将相似的任务或者代码封装到函数中,供其他地方调用 语法格式 第一种格式 name() { command1 command2 ...... commondn } 第二种格式 function name { command1 ... 阅读全文
posted @ 2019-05-28 09:56 reblue520 阅读(380) 评论(0) 推荐(0) 编辑
摘要:shell编程系列5--数学运算 方法1 expr $num1 operator $num2 方法2 $(($num1 operator $num2)) expr操作符对照表1 操作符 含义 num1 | num2 num1不为空且非0,返回num1;否则返回num2 num1 & num2 num1不为空且非0,返回num1;否则返回0 num1 num2 ... 阅读全文
posted @ 2019-05-24 17:06 reblue520 阅读(536) 评论(0) 推荐(0) 编辑
摘要:shell编程系列4--有类型变量:字符串、只读类型、整数、数组 有类型变量总结: declare命令和typeset命令两者等价 declare、typeset命令都是用来定义变量类型的 declare命令参数总结 1.declare -r 将变量设置为只读类型 declare -r var="hello" var="world" # 变量默认可以修改 [root@es01 s... 阅读全文
posted @ 2019-05-24 16:48 reblue520 阅读(462) 评论(0) 推荐(0) 编辑
摘要:shell编程系列3--命令替换 命令替换 命令替换总结 方法1 `command` 方法2 $(command) 例子1: 获取系统的所有用户并输出 for循环能以空格、换行、tab键作为分隔符 [root@localhost shell]# cat example_1.sh #!/bin/bash # index=1 for user in `cat /etc/passwd ... 阅读全文
posted @ 2019-05-24 16:32 reblue520 阅读(313) 评论(0) 推荐(0) 编辑
摘要:shell编程系列2--字符串的处理 字符串的处理 1.计算字符串的长度 方法1 ${#string} 方法2 expr length "$string" (如果string中间有空格,必须加双引号) 例子: # 通过${#string}获取字符串长度 [root@localhost shell]# var1="hello world" [root@localhost shell]#... 阅读全文
posted @ 2019-05-24 10:07 reblue520 阅读(345) 评论(0) 推荐(0) 编辑
摘要:shell编程系列1--shell脚本中的变量替换 变量替换总结: 1、${变量#匹配规则} # 从头开始匹配,最短删除 2、${变量##匹配规则} # 从头开始匹配,最长删除(贪婪模式) 3、${变量%匹配规则} # 从尾开始匹配,最短删除 4、${变量%%匹配规则} # 从尾开始匹配,最长删除(贪婪模式) 5、${变量/旧字符串/新字符串} # 替换变量内... 阅读全文
posted @ 2019-05-24 10:00 reblue520 阅读(1581) 评论(0) 推荐(0) 编辑
摘要:consul_nginx_uprsync动态负载均衡 读取到的持久化配置文件 通过接口控制后端服务器配置 注意是put方式 最终在consul中显示 阅读全文
posted @ 2019-05-23 10:52 reblue520 阅读(435) 评论(0) 推荐(0) 编辑
摘要:Django开发简单采集用户浏览器信息的小功能 Centos环境准备 yum install –y python-pip export http_proxy=http://10.11.0.148:808 export https_proxy=https://10.11.0.148:808 pip i 阅读全文
posted @ 2019-05-15 18:16 reblue520 阅读(934) 评论(0) 推荐(0) 编辑
摘要:Logstash简介 处理流程和支持的常见软件 Logstash的配置 使用两条nginx日志进行测试,默认的nginx日志即可: 阅读全文
posted @ 2019-05-14 16:15 reblue520 阅读(661) 评论(0) 推荐(0) 编辑
摘要:Logstash简介 处理流程和支持的常见软件 Logstash的配置 使用两条nginx日志进行测试,默认的nginx日志即可: 阅读全文
posted @ 2019-05-14 16:15 reblue520 阅读(585) 评论(0) 推荐(0) 编辑
摘要:Packetbeat简介 抓包示例 下载packetbeat 抓取elasticsearch的包 ①启动elasticsearch 启动packetbeat 配置es.yml #################### Packetbeat Configuration Example ######## 阅读全文
posted @ 2019-05-14 16:12 reblue520 阅读(1133) 评论(0) 推荐(0) 编辑
摘要:Kibana的安装与配置 配置 [root@es01 kibana-5.6.3-linux-x86_64]# egrep -v '^$|^#' config/kibana.yml server.host: "0.0.0.0" server.name: "kibana01" elasticsearch 阅读全文
posted @ 2019-05-14 16:02 reblue520 阅读(1294) 评论(0) 推荐(0) 编辑
摘要:Elasticsearch的安装和使用 Elasticsearch的下载 下载地址:https://www.elastic.co/downloads/elasticsearch 环境准备: echo "fs.file-max = 1000000" >> /etc/sysctl.conf echo “ 阅读全文
posted @ 2019-05-14 15:55 reblue520 阅读(435) 评论(0) 推荐(0) 编辑
摘要:性能测试的需求分析 老系统:对比以往的用户使用行为及用户量 新系统:同行业比较、业务预期 性能测试工具对比 行业岗位技能需求: 具体分类(测试范围) 可靠性测试:又称之为稳定性测试或疲劳测试,是指系统在高压情况下,长时间的运行系统是否稳定,如cpu使用率在80%以上,7*24小时运行,系统是否稳定 阅读全文
posted @ 2019-05-14 15:40 reblue520 阅读(266) 评论(0) 推荐(0) 编辑
摘要:用户管理:这里的用户说的是登录跳板机的账号,通过这个账号可以登录跳板机 资产管理: 资产管理/管理用户:有权限对最终的目标服务器进行管理的用户,可以单独创建,也可以直接使用root用户 资产管理/系统用户:跳板机通过在目标服务器中添加该用户对跳板机进行管理 # 跳板机在目标服务器上做的操作,手动模拟 阅读全文
posted @ 2019-05-08 20:20 reblue520 阅读(5553) 评论(1) 推荐(0) 编辑