<!--[if !supportLists]-->3、 <!--[endif]-->编译安装
[root@localhost zabbix-2.0.4]# ./configure --prefix=/usr/local/zabbix --with-MySQL --with-net-snmp --with-libcurl --enable-server --enable-agent --enable-proxy
[root@localhost zabbix-2.0.4]# make install
<!--[if !supportLists]-->4、 <!--[endif]-->添加服务端口:
[root@localhost zabbix-2.0.4]# grep zabbix /etc/services
zabbix-agent 10050/tcp # Zabbix Agent
zabbix-agent 10050/udp # Zabbix Agent
zabbix-trapper 10051/tcp # Zabbix Trapper
zabbix-trapper 10051/udp # Zabbix Trapper
<!--[if !supportLists]-->5、 <!--[endif]-->将etc下面的文件添加权限。
[root@localhost etc]# chown -R zabbix:zabbix /usr/local/zabbix/etc/
修改配置文件server,修改一项DBPassword=密码
[root@localhost etc]# vi /usr/local/zabbix/etc/zabbix_server.conf
修改Agentd配置文件,修改Hostname为本机就行了
[root@localhost etc]# vi /usr/local/zabbix/etc/zabbix_agentd.conf
<!--[if !supportLists]-->6、 <!--[endif]-->添加web前端php文件,改名修改权限。
[root@localhost etc]# cd ~/zabbix-2.0.4/frontends/
[root@localhost frontends]# cp -rf php /var/www/html/
[root@localhost frontends]# cd /var/www/html/
[root@localhost html]# mv php zabbix
[root@localhost html]# chown -R zabbix:zabbix zabbix