centos6.4下搭建zabbix2.0.6。
一 服务端配置
1.配置前先关闭iptables和SELINUX,避免安装过程中报错。
[root@zabbix ~]# service iptables stop
[root@zabbix ~]# chkconfig iptables off
[root@zabbix ~]# getenforce
Disabled
[root@zabbix ~]#setenforce 0
2.安装LAMP环境
[root@zabbix ~]# yum install -y httpd mysql mysql-serv[......]