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

Revision 5754, 1.9 kB (checked in by nate, 17 months ago)
Updated FC6 install docs.
Line 
1Fedora Core 6 Installation Instructions
2
3Fedora Core uses an RPM based packaging system that contains both
4stable and cutting-edge software.  It differs from other distributions
5in that the RPMs (packages) that are bundled with Fedora Core are very
6modern (usually no older than a year), as well as very stable and
7thoroughly tested.
8
9
10Installation Technique: Manual Install
11
12These instructions are for installing the Zenoss RPM.  This version works
13with FC6, but it should work with FC5 and previous Fedora Core
14installations with minor modifications (mostly to dependent RPM
15versions).  Follow these steps on the machine where you want to run
16Zenoss.  Note: All commands should be run as root.
17
181.  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
252.  Download the latest Zenoss RPM for EL 5 (there is no independent FC6
26    RPM) from the SourceForge downloads page, and install it using the
27    following command:
28
29   # rpm -ivh zenoss-2.0.0-0.el5.i386.rpm
30
31
323.  In order to allow the SNMP Daemon to read CPU information SE Linux
33      must be disabled.  This can be achieved using the following
34      command (Note: if you have a better alternative please share it
35      with us by emailing support@zenoss.com)
36
37   # setenforce 0
38
39
404.  Start the snmp daemon using the command:
41
42   # /etc/init.d/snmpd start
43
44
455.  Start MySQL using the command:
46
47   # /etc/init.d/mysqld start
48
49
506.  Start Zenoss using the command:
51
52   # /etc/init.d/zenoss start
53
54
557.  Several ports need to be open for Zenoss to operate.  One option for doing
56      this is to disable the firewall:
57
58  # service iptables stop
59  # chkconfig iptables off
60
61    Alternatively you can open the following ports in your firewall:
62      8080 - HTTP access to the zenoss console
63      514 - syslog
64      162 - SNMP traps
65
66   
Note: See TracBrowser for help on using the browser.