| 1 | Fedora Core 6 Installation Instructions |
|---|
| 2 | |
|---|
| 3 | Fedora Core uses an RPM based packaging system that contains both |
|---|
| 4 | stable and cutting-edge software. It differs from other distributions |
|---|
| 5 | in that the RPMs (packages) that are bundled with Fedora Core are very |
|---|
| 6 | modern (usually no older than a year), as well as very stable and |
|---|
| 7 | thoroughly tested. |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | Installation Technique: Manual Install |
|---|
| 11 | |
|---|
| 12 | These instructions are for installing the Zenoss RPM. This version works |
|---|
| 13 | with FC6, but it should work with FC5 and previous Fedora Core |
|---|
| 14 | installations with minor modifications (mostly to dependent RPM |
|---|
| 15 | versions). Follow these steps on the machine where you want to run |
|---|
| 16 | Zenoss. Note: All commands should be run as root. |
|---|
| 17 | |
|---|
| 18 | 1. The Yellow Dog Updater, Modified (YUM) is used to install several |
|---|
| 19 | packages Zenoss depends on in order to properly function. To |
|---|
| 20 | run yum, issue the following command: |
|---|
| 21 | |
|---|
| 22 | # yum -y install mysql mysql-server net-snmp net-snmp-utils |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | 2. Download the latest Zenoss RPM from the SourceForge downloads |
|---|
| 26 | page, and install it using the following command: |
|---|
| 27 | |
|---|
| 28 | # rpm -ivh zenoss-1.1.2-0.fc6.i386.rpm |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | 3. In order to allow the SNMP Daemon to read CPU information SE Linux |
|---|
| 32 | must be disabled. This can be achieved using the following |
|---|
| 33 | command (Note: if you have a better alternative please share it |
|---|
| 34 | with us by emailing support@zenoss.com) |
|---|
| 35 | |
|---|
| 36 | # setenforce 0 |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | 4. Start the snmp daemon using the command: |
|---|
| 40 | |
|---|
| 41 | # /etc/init.d/snmpd start |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | 5. Start MySQL using the command: |
|---|
| 45 | |
|---|
| 46 | # /etc/init.d/mysql start |
|---|
| 47 | |
|---|
| 48 | |
|---|
| 49 | 6. Start Zenoss using the command: |
|---|
| 50 | |
|---|
| 51 | # /etc/init.d/zenoss start |
|---|
| 52 | |
|---|
| 53 | |
|---|
| 54 | 7. Several ports need to be open for Zenoss to operate. One option for doing |
|---|
| 55 | this is to disable the firewall: |
|---|
| 56 | |
|---|
| 57 | # service iptables stop |
|---|
| 58 | # chkconfig iptables off |
|---|
| 59 | |
|---|
| 60 | Alternatively you can open the following ports in your firewall: |
|---|
| 61 | 8080 - HTTP access to the zenoss console |
|---|
| 62 | 514 - syslog |
|---|
| 63 | 162 - SNMP traps |
|---|
| 64 | |
|---|
| 65 | |
|---|