Q's blog

一些个人文档笔记

Compose和Docker兼容性:
Compose 文件格式有3个版本,分别为1, 2.x 和 3.x
目前主流的为 3.x 其支持 docker 1.13.0 及其以上的版本

阅读全文 »

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 1、在需要监控的服务器安装agent 
root@zabbix-node1:~/zabbix-4.0.10# ./configure --prefix=/app/zabbix_agent --enable-agent
root@zabbix-node1:~/zabbix-4.0.10# make && make install

修改agent配置
root@zabbix-node1:~# vim /app/zabbix_agent/etc/zabbix_agentd.conf
Server=192.168.6.10 #指定server端,被动模式
Hostname=192.168.6.20 #在server监控的主机名显示

AllowRoot=1 #允许root启动
User=root #root用户启动

root@zabbix-node1:~# /app/zabbix_agent/sbin/zabbix_agentd
root@zabbix-node1:~# ss -nlt
2、在zabbix-server端创建主机、模板
阅读全文 »

1
2
3
zabbix_get采集信息
zabbix_get -s 192.168.6.20 -p 10050 -k "system.hostname"
java gateway
阅读全文 »

zabbix是一个分布式的监控系统,支持通过代理服务器zabbix proxy收集zabbix agent的数据,然后把收集保存在本地数据库并发送给zabbix server进行统一存储和展示。

阅读全文 »
0%