Zabbix:Installation A: Difference between revisions
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
=== '''''This procedure applies to Zabbix v.2.4 on CentOS6''''' === | === '''''This procedure applies to Zabbix v.2.4 on CentOS6''''' === | ||
1. Follow Zabbix documentation | 1. Follow RedHat/CentOS installation procedure from Zabbix documentation | ||
https://www.zabbix.com/documentation/2.4/manual/installation/install_from_packages | https://www.zabbix.com/documentation/2.4/manual/installation/install_from_packages#red_hat_enterprise_linuxcentos | ||
2. | '''Note''': It is possible that you might get the following error while starting httpd on a new CentOS installation: | ||
# service httpd start | |||
Starting httpd: httpd: apr_sockaddr_info_get() failed for myZabbixHost | |||
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName | |||
Make sure to configure your hostname "myZabbixHost" to /etc/hosts | |||
2. Configure services to restart on a reboot of your machine | |||
chkconfig mysqld on | |||
chkconfig zabbix-server on | |||
chkconfig zabbix-agent on | |||
chkconfig httpd on | |||
Revision as of 05:01, 28 November 2014
This procedure applies to Zabbix v.2.4 on CentOS6
1. Follow RedHat/CentOS installation procedure from Zabbix documentation
Note: It is possible that you might get the following error while starting httpd on a new CentOS installation:
# service httpd start Starting httpd: httpd: apr_sockaddr_info_get() failed for myZabbixHost httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
Make sure to configure your hostname "myZabbixHost" to /etc/hosts
2. Configure services to restart on a reboot of your machine
chkconfig mysqld on chkconfig zabbix-server on chkconfig zabbix-agent on chkconfig httpd on