nagios重状态和结果,没有数据历史,不成图像,不支持web配置,可以自己开发脚本定制个性化监控,支持多种插件;
zabbix有数据历史,可成图像,支持web配置,可以自动发现;
1 安装zabbix
yum install -y epel-release
安装rpm包的lamp环境 :
yum install -y httpd mysql mysql-libs php php-mysql mysql-server php-bcmath php-gd php-mbstring
安装zabbix服务端:
yum install -y zabbix20 zabbix20-agent zabbix20-server zabbix20-server-mysql zabbix20-web zabbix20-web-mysql net-snmp-devel
启动服务:
/etc/init.d/zabbix-server start; /etc/init.d/zabbix-agent start
/etc/init.d/httpd start; /etc/init.d/mysqld start
[root@yiqang004 ~]# tail /var/log/zabbix/zabbix_server.log 错误日志
修改一下mysql配置文件
vim /etc/my.cnf //修改或增加如下内容
把[mysqld],找到
default-character-set = utf8
改为:[mysqld]
character_set_server = utf8
启动mysql服务
/etc/init.d/mysqld start
建库,导入数据,因为没有密码不需要减p
mysql -uroot -p -e "create database zabbix"
mysql -uroot -p --default-character-set=utf8 zabbix < /usr/share/zabbix-mysql/schema.sql
mysql -uroot -p --default-character-set=utf8 zabbix < /usr/share/zabbix-mysql/images.sql
mysql -uroot -p --default-character-set=utf8 zabbix < /usr/share/zabbix-mysql/data.sql
[root@cenots003 ~]# mysql -uroot -e "grant all on *.* to 'zabbix'@'localhost' identified by 'zabbix';"
[root@cenots003 ~]# vim /etc/zabbix/zabbix_server.conf
找到DBUser=zabbix
更改: DBPassword=zabbix
验证sock文件是否在哪里是否有效
[root@cenots003 ~]# ls /var/lib/mysql/mysql.sock 启动
[root@cenots003 ~]# /etc/init.d/zabbix-server start 启动zabbix
[root@cenots003 ~]# ps aux|grep zabbix 可以才看到很多进程 才算启动了zabbix
[root@cenots003 ~]# netstat -lnp |grep zabbix
需要看到 10050
10051
2.网页安装zabbix
浏览器访问 http://ip/zabbix,
默认会有“It is not safe to rely on the system‘s timezone settings ”这样的警告信息,
点next
解决相关的报错信息
需要
#vim /etc/php.ini 设置 date.timezone=“Asia/Shanghai”
[root@cenots003 ~]# vim /etc/php.ini 照上图修正错误。
/etc/init.d/httpd restart
点retry 看到ok,在点下面
点next
1.113,只是个ip的区别名
设置的密码账户:
管理员账号为 admin 密码: zabbix
默认登陆界面。
简体中文设置
(vim /etc/php.ini)
输入mysql相关信息, 首先要测试一下,如果不通过,则需要调试,测试通过后,
点next
Name 写127.0.0.1,(可以自定义)
点next,
再点next,
最后点finish
默认管理员账号为 admin 密码: zabbix
安装成功。
这时会遇到“zabbix server is not running”这样的错误,需要编辑一下 /etc/zabbix/zabbix_server.conf ,配置DBUser, DBPassword
3. 接入要监控的主机
在客户端上:从端:版本需要对应好20就是2.0
#yum install zabbix20-agent
#vim /etc/zabbix_agentd.conf //更改
Server=192.168.1.113 服务端ip; 即监听机的ip
ServerActive=0.0.0.0:10050
Hostname=aming (自定义,但要唯一)
启动客户端,从端
#/etc/init.d/zabbix-agent start
# ps aux|grep zabbix
服务端上命令行测试:
zabbix_get -s 192.168.1.119客户端ip -p10050 -k "system.hostname"
可以得到对方主机名称。
在web界面下,点”configuration” --> “host” --> 右上角点”Create Host” 其中host name, visible name自定义,可以选择groups,这里默认即可,ip address 写入客户端ip
配置 --> 主机--> 左上角 添加主机:
配置监控项目模板:点“templates”, 点add, 在弹出的小窗口中选择Template OS Linux, 然后点select, 最后点save
4.自定义templates
Zabbix自带了很多模板,模板中有很多监控项目,比如CPU、网卡、内存、进程等等。使用系统自带模板有点太多了,所以我们可以自定义模板。点configuration 选择 templates,点右上角的create template
Template name和Visible name 自定义,Groups 选择templates, 点save
然后我们去挑选一些项目拷贝到该模板下:比如我们找到Template OS Linux 点一下items,选择我们想要的项目,然后在下面选择copy selected to … 然后点go
Group 选择templates, 找到刚才我们自定义的templates,点copy
点configuration 选择 templates可以看到新建的templates中已经有刚刚我们copy的items了
我们可以使用和上面相同的方法自定义拷贝Triggers(触发器 ),它用来设置告警的阀值,当然我们也可以自定义编辑它
监控客户端网卡流量 http://www.apelearn.com/bbs/thread-8091-1-1.html
5. 配置发邮件,服务端:
# mail -s "test" 382837773@qq.com < /etc/inittab
# yum install -y sendmail ;
[root@cenots003 ~]# /etc/init.d/sendmail start
mkdir -p /home/zabbix/bin
vim /home/zabbix/bin/baojing.sh //内容:
#! /bin/bash
echo "$3" |/bin/mail -s "$2" $1
保存退出,增加其执行权限
chmod +x /home/zabbix/bin/baojing.sh
[root@cenots003 ~]# vim /etc/zabbix_server.conf
在zabbix_server.conf配置文件中,
有参数AlertScriptsPath和ExternalScripts
AlertScriptsPath=/home/zabbix/bin/ ---用户自定义的media types脚本
ExternalScripts=/home/zabbix/bin/ ---用户自定义的检查的脚本(item)
这样才能找到你的脚本,因为你在frontend中只是输入脚本的名称,没有路径。
创建mediea types: “Administration" -->”Media types",点击右上角“Create Media Type"其中Description填"baojing” 或其它自定义名称,Type选择"Script",Script填”baojing.sh”然后点”Save”.
创建user: “Adimistration” --> “Users”在右上角,选择”Users”,点击”Create User”, alias: test1,自定义name和lastname password:123456;group 选择guest,回到上面点一下media,type 选择baojing,send to 写要发送邮件的邮箱,点add, 最后点save
创建action: “configuration” --> actions,右上角“Create Actions”, Name自定义,我这里写”baojing”,其他默认,然后点右侧的“Operations”下的“New”按钮,“Operation Type”选择“Send message”,“Send Message to”选择一个或多个要发送消息的用户组,Send to Users选择我们之前新增的test1, “Send only to”选择baojing , 点一下add
最后点save
zabbix历史记录乱码问题 http://caisangzi.blog.51cto.com/6387416/1313630
zabbix图形中乱码问题 http://www.apelearn.com/bbs/thread-8090-1-1.html
zabbix参考文章
http://www.iyunv.com/thread-22959-1-1.html
http://waringid.blog.51cto.com/65148/955939/
http://www.linuxidc.com/Linux/2014-11/109909.htm
http://xianglinhu.blog.51cto.com/5787032/d-6
自定义脚本: http://www.linuxidc.com/Linux/2013-11/92476.htm