This is on a fresh install of Centos 5.2 64 bit. Base install with no additional packages.
SELinux is disabled.
#vi /etc/selinux/config
SELINUX=disabled
Download zenoss the full stack install (this is for 64bit)
mkdir ~/src
cd ~/src
wget http://nchc.dl.sourceforge.net/sourceforge/zenoss/zenoss-stack-2.3.2-linux-x64.bin
Change the permissions
chmod +x ./zenoss*.bin
Run the install
./zenoss*.bin
By default, the package is installed in the /usr/local/zenoss directory. Enter a password for the root user of mysql.
Open ports on iptables
#vi /etc/sysconfig/iptables
Add the following
#zenoss rules
-A RH-Firewall-1-INPUT -p tcp -m tcp –dport 8080 -j ACCEPT
-A RH-Firewall-1-INPUT -p udp -m udp –dport 514 -j ACCEPT
-A RH-Firewall-1-INPUT -p udp -m udp –dport 162 -j ACCEPT
#zenoss rule
s
Restart iptables.
#service iptables restart
Login webadmin
http://<zenoss computer>:8080/
user – admin
password – zenoss
If you need to restart zenoss, use
service zenoss-stack restart
No comments:
Post a Comment