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

Revision 4833, 1.9 kB (checked in by jstevens, 19 months ago)
Changed firewall instructions, etc
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 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
313.  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
394.  Start the snmp daemon using the command:
40
41   # /etc/init.d/snmpd start
42
43
445.  Start MySQL using the command:
45
46   # /etc/init.d/mysql start
47
48
496.  Start Zenoss using the command:
50
51   # /etc/init.d/zenoss start
52
53
547.  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   
Note: See TracBrowser for help on using the browser.