Zabbix:Installation A
(Complete the information on the page) |
|||
Line 1: | Line 1: | ||
{{DISPLAYTITLE:Installing a Zabbix server}} | {{DISPLAYTITLE:Installing a Zabbix server}} | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
<big>'''''This procedure applies to Zabbix v.2.4 on CentOS6'''''</big> | <big>'''''This procedure applies to Zabbix v.2.4 on CentOS6'''''</big> | ||
Line 81: | Line 74: | ||
===Install MIBs=== | ===Install MIBs=== | ||
− | Get the | + | Get the "install_mibs.sh" script: |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
# wget http://download.distribution.telcobridges.com/mibs/install_mibs.sh | # wget http://download.distribution.telcobridges.com/mibs/install_mibs.sh | ||
# chmod +x install_mibs.sh | # chmod +x install_mibs.sh | ||
+ | |||
+ | Run "install_mibs.sh" script with no argument to get the mibs path configured on your system: | ||
+ | # ./install_mibs.sh | ||
+ | ./install_mibs.sh <MibPath> | ||
+ | Mibs paths returned by snmptranslate: | ||
+ | init_mib: Seen MIBDIRS: Looking in '/root/.snmp/mibs:/usr/share/snmp/mibs' for mib dirs ... | ||
+ | |||
+ | Install the mibs files to the MIBDIRS path (ex.'''/usr/share/snmp/mibs'''): | ||
# ./install_mibs.sh /usr/share/snmp/mibs | # ./install_mibs.sh /usr/share/snmp/mibs | ||
+ | |||
+ | The installation of NET-SNMP already comes with defaults mibs. The script install only the mibs that are not included in the default NET-SNMP package and that are needed by the TB snmp zabbix templates: | ||
+ | * TB-MIB-2014.mib (TB-MIB) | ||
+ | * rfc-2495.mib (DS1-MIB) | ||
+ | * rfcperfhist.mib (definition used by rfc-2495.mib) | ||
+ | |||
+ | '''Note''': If for some reason your NET-SNMP does not contain all the required mibs, you can download all the mibs from http://download.distribution.telcobridges.com/mibs and copy them to your MIBDIRS path. | ||
Configure snmp.conf (if the file does not exist, create the file with only the following line): | Configure snmp.conf (if the file does not exist, create the file with only the following line): | ||
Line 99: | Line 103: | ||
# service snmptrapd start | # service snmptrapd start | ||
# service snmptt start | # service snmptt start | ||
− | |||
− | |||
− | |||
− |
Revision as of 00:47, 28 May 2015
This procedure applies to Zabbix v.2.4 on CentOS6
Contents |
Install Zabbix
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 automatically starts on reboot of the server
# chkconfig mysqld on # chkconfig zabbix-server on # chkconfig zabbix-agent on # chkconfig httpd on
3. Disable SELinux
# setenforce 0
Edit /etc/selinux/config and set SELINUX to disabled:
# vi /etc/selinux/config SELINUX=disabled
4. Configure the Zabbix frontend
Follow the procedure in the section Installing frontend from Zabbix documentation
https://www.zabbix.com/documentation/2.4/manual/installation/install#installing_zabbix_web_interface
5. Login to Zabbix frontend
In your browser, open Zabbix URL: http://<server_ip_or_name>/zabbix
The default user name is Admin, password zabbix
Configure SNMP traps
Reference from http://www.zabbix.org/wiki/ConfigureSnmptrapsCentos6_RHEL6).
Install Packages
# yum install net-snmp-utils # yum install net-snmp-perl # yum install snmptt
Note: perl-Net-SNMP will be installed together with snmptt
Configure Zabbix Server
# vi /etc/zabbix/zabbix_server.conf StartSNMPTrapper=1 SNMPTrapperFile=/var/log/snmptt/snmptt.log
Configure snmptrapd
# vi /etc/snmp/snmptrapd.conf traphandle default /usr/sbin/snmptthandler authCommunity log,execute,net public
Configure snmptt
# vi /etc/snmp/snmptt.ini translate_log_trap_oid = 2 net_snmp_perl_enable = 1 date_time_format = %H:%M:%S %Y/%m/%d log_file = /var/log/snmptt/snmptt.log log_system_enable = 1
Install TelcoBridges snmptt.conf:
# wget http://download.distribution.telcobridges.com/zabbix/snmptt.conf # cp snmptt.conf /etc/snmp/snmptt.conf
Install MIBs
Get the "install_mibs.sh" script:
# wget http://download.distribution.telcobridges.com/mibs/install_mibs.sh # chmod +x install_mibs.sh
Run "install_mibs.sh" script with no argument to get the mibs path configured on your system:
# ./install_mibs.sh ./install_mibs.sh <MibPath> Mibs paths returned by snmptranslate: init_mib: Seen MIBDIRS: Looking in '/root/.snmp/mibs:/usr/share/snmp/mibs' for mib dirs ...
Install the mibs files to the MIBDIRS path (ex./usr/share/snmp/mibs):
# ./install_mibs.sh /usr/share/snmp/mibs
The installation of NET-SNMP already comes with defaults mibs. The script install only the mibs that are not included in the default NET-SNMP package and that are needed by the TB snmp zabbix templates:
- TB-MIB-2014.mib (TB-MIB)
- rfc-2495.mib (DS1-MIB)
- rfcperfhist.mib (definition used by rfc-2495.mib)
Note: If for some reason your NET-SNMP does not contain all the required mibs, you can download all the mibs from http://download.distribution.telcobridges.com/mibs and copy them to your MIBDIRS path.
Configure snmp.conf (if the file does not exist, create the file with only the following line):
# vi /etc/snmp/snmp.conf mibs +ALL
Start services
# chkconfig snmptt on # chkconfig snmptrapd on # service snmptrapd start # service snmptt start