
zabbix服务
文章平均质量分 51
zabbix的一些常见服务
xiaohuai吖
小壞还是一朵小花吖!!!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS 7.9安装zabbix6.0LTS版本
centos7.9部署zabbix6.0LTS版本原创 2023-02-01 10:50:01 · 4451 阅读 · 8 评论 -
zabbix配置自动发现主机
zabbix配置自动发现主机原创 2023-03-01 17:15:17 · 417 阅读 · 0 评论 -
Linux下zabbix_proxy实施部署
zabbix 监控上千设备时,使用它来减轻 server 的压力原创 2023-02-17 11:09:10 · 1165 阅读 · 0 评论 -
zabbix服务--mysql(三)监控增删改查
1,将监控项写进脚本[root@localhost scripts] vim check_mysql.sh [root@localhost scripts] cat check_mysql.sh #!/bin/bashcase $1 in slave_status) mysql -ucheck -p123 -e "show slave status \G"|grep "Running...原创 2020-04-09 17:18:17 · 509 阅读 · 0 评论 -
Grafana安装配置
Grafana是领先的开源可视化软件工具,无论您的数据在哪里,或者它所处的数据库是什么类型,您都可以将它与Grafana结合在一起,做成精美的可视化图表Grafana官网:https://grafana.com/Grafana官方手册:https://grafana.com/docs/1,导入yum源,安装grafana,并启动[root@localhost ~] vim /etc/yum...原创 2020-04-09 21:47:32 · 3464 阅读 · 0 评论 -
zabbix服务--mysql(四)监控处理请求,库和表大小
1,将监控项写进脚本[root@localhost scripts] vim check_mysql.sh [root@localhost scripts] cat check_mysql.sh#!/bin/bashuptime=$(mysqladmin status|awk '{print $2}') #定义变量case $1 in Com_commit) #数据回滚 mysq...原创 2020-04-09 17:51:18 · 280 阅读 · 0 评论 -
zabbix服务--mysql(二)监控流量
1,过滤出监控内容,并写进脚本[root@localhost scripts] mysqladmin extended-status |grep "Bytes_sent"|awk '{print $4}'3969067[root@localhost scripts] mysqladmin extended-status |grep "Bytes_received"|awk '{print $...原创 2020-04-09 17:15:36 · 261 阅读 · 0 评论 -
zabbix服务--mysql(一)主从监控
基于搭建mysql主从,在客户端操作1,创建监控mysql主从状态脚本,并创建授权用户[root@localhost ~] cd /etc/zabbix/scripts/[root@localhost scripts] vim check_mysql.sh[root@localhost scripts] cat check_mysql.sh #!/bin/bashcase $1 in ...原创 2020-04-08 20:30:34 · 388 阅读 · 0 评论 -
zabbix--监控web服务(2)统计PV和UV
PV(Page View)访问量即页面浏览量或点击量,衡量网站用户访问的网页数量;在一定统计周期内用户每打开或刷新一个页面就记录1次,多次打开或刷新同一页面则浏览量累计。UV (unique visitor )即独立访客数指访问某个站点或点击某个网页的不同 IP 地址的人数。在同一天内,UV 只记录第一次进入网站的具有独立IP 的访问者,在同一天内再次访问该网站则不计数。UV 提供了一...原创 2020-04-08 18:16:06 · 421 阅读 · 0 评论 -
zabbix--监控web服务(1)web端口
1,关闭防火墙和selinux,安装httpd并启动[root@localhost ~] systemctl stop firewalld[root@localhost ~] setenforce 0[root@localhost ~] yum -y install httpd[root@localhost ~] systemctl enable httpd #添加开机自启[root@...原创 2020-04-08 17:58:20 · 1844 阅读 · 0 评论 -
zabbix-server服务部署
1,关闭防火墙和selinux,同步系统时间,并安装zabbix和mysql[root@localhost ~] systemctl stop firewalld[root@localhost ~] setenforce 0#同步系统时间[root@localhost ~] ntpdate pool.ntp.org#上传阿里云yum源至/etc/yum.repos.d/[root@l.........原创 2020-04-07 20:19:44 · 918 阅读 · 0 评论