|
Revision 8750, 1.3 kB
(checked in by abray, 8 months ago)
|
|
adding line breaks at 80 Char to all install instructions for 21
|
| 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 mysql mysql-server net-snmp net-snmp-utils gmp |
|---|
| 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 # rpm -Uvh zenoss-deps/*.rpm |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | 2. Download the latest Zenoss RPM from the SourceForge downloads page, and |
|---|
| 21 | install it using the following command: |
|---|
| 22 | |
|---|
| 23 | # rpm -ivh zenoss-2.0.0-0.el4.i386.rpm |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | 3. Start Zenoss using the command: |
|---|
| 27 | |
|---|
| 28 | # /etc/init.d/mysqld restart # /etc/init.d/zenoss start |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | 4. Several ports need to be open for Zenoss to operate. One option for doing |
|---|
| 32 | this is to disable the firewall: |
|---|
| 33 | |
|---|
| 34 | # service iptables stop # chkconfig iptables off |
|---|
| 35 | |
|---|
| 36 | Alternatively you can open the following ports in your firewall: 8080 - HTTP |
|---|
| 37 | access to the zenoss console 514 - syslog 162 - SNMP traps |
|---|
| 38 | |
|---|
| 39 | |
|---|