|
Revision 9528, 1.3 kB
(checked in by marc, 5 months ago)
|
|
* Added tk as a dependency for el4
|
| Line | |
|---|
| 1 | EL 4 RPM Installation Instructions |
|---|
| 2 | |
|---|
| 3 | These instructions are for installing the Zenoss RPM (Red Hat Package Manager). |
|---|
| 4 | This version works with Enterprise Linux version 4. Follow these steps on the |
|---|
| 5 | machine where you want to run Zenoss. Note: All commands should be run as root. |
|---|
| 6 | |
|---|
| 7 | 1. The Yellow Dog Updater, Modified (YUM) or Up2Date is used to install several |
|---|
| 8 | packages Zenoss depends on in order to properly function. If you use yum, issue |
|---|
| 9 | the following command: |
|---|
| 10 | |
|---|
| 11 | # yum -y install net-snmp net-snmp-utils gmp tk |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | 2. Download and install the el4 dependencies and install them |
|---|
| 15 | |
|---|
| 16 | # wget http://downloads.sourceforge.net/zenoss/zenoss-deps-el4.i386.tar.bz2 |
|---|
| 17 | # tar jxf zenoss-deps-el4.i386.tar.bz2 |
|---|
| 18 | # rpm -Uvh zenoss-deps/*.rpm |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | 2. Download the latest Zenoss RPM from the SourceForge downloads page, and |
|---|
| 22 | install it using the following command: |
|---|
| 23 | |
|---|
| 24 | # rpm -ivh zenoss-2.2.0-0.el4.i386.rpm |
|---|
| 25 | |
|---|
| 26 | |
|---|
| 27 | 3. Start Zenoss using the command: |
|---|
| 28 | |
|---|
| 29 | # /etc/init.d/mysql restart |
|---|
| 30 | # /etc/init.d/zenoss start |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | 4. Several ports need to be open for Zenoss to operate. One option for doing |
|---|
| 34 | this is to disable the firewall: |
|---|
| 35 | |
|---|
| 36 | # service iptables stop |
|---|
| 37 | # chkconfig iptables off |
|---|
| 38 | |
|---|
| 39 | Alternatively you can open the following ports in your firewall: |
|---|
| 40 | 8080 - HTTP access to the zenoss console |
|---|
| 41 | 514 - syslog |
|---|
| 42 | 162 - SNMP traps |
|---|
| 43 | |
|---|
| 44 | |
|---|