root/branches/zenoss-2.1.x/inst/docs/INSTALL_FC6.txt

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