
Installing a hub
32
./jre-6u45-linux-x64-rpm.bin
e. Add the JAVA_HOME environment variable to /etc/profile.
echo "export JAVA_HOME=/usr/java/default" >> /etc/profile
f. Verify the correct version is installed.
java -version
The preceding command should return the following output.
java version "1.6.0_45"
Java(TM) SE Runtime Environment (build 1.6.0_45-b06)
Java HotSpot(TM) 64-Bit Server VM (build 20.45-b01, mixed mode)
6. Install the Zenoss dependencies repository.
RHEL/CentOS 5: rpm -Uvh http://deps.zenoss.com/yum/zenossdeps-4.2.x-1.el5.noarch.rpm
RHEL/CentOS 6: rpm -Uvh http://deps.zenoss.com/yum/zenossdeps-4.2.x-1.el6.noarch.rpm
7. Clean up yum caches.
yum clean all
8. Install the Zenoss DataStore
Note
Hub hosts relies on Zenoss DataStore libraries.
a. Download the Zenoss DataStore RPM file from the Zenoss Support site. Contact your Zenoss representative
for login credentials.
b. Install Zenoss DataStore.
RHEL/CentOS 5: yum -y --nogpgcheck localinstall zends-version.el5.x86_64.rpm
RHEL/CentOS 6: yum -y --nogpgcheck localinstall zends-version.el6.x86_64.rpm
c. Configure Zenoss DataStore not to start when the hub host starts.
chkconfig zends off
4.2.3.2. Install Resource Manager on the hub host
1. Log in to the hub host as root, or as a user with superuser privileges.
2. Download the Resource Manager RPM file from the Zenoss Support site. Contact your Zenoss representative for
login credentials.
3. Install the Resource Manager RPM file.
RHEL/CentOS 5: yum -y --nogpgcheck localinstall zenoss_resmgr-version.el5.x86_64.rpm
RHEL/CentOS 6: yum -y --nogpgcheck localinstall zenoss_resmgr-version.el6.x86_64.rpm
4. Configure required services to start when the hub host starts, and start the services:
for svc in memcached snmpd; do chkconfig $svc on; service $svc start; done
5. Configure Resource Manager not to start when the system starts:
chkconfig zenoss off
Kommentare zu diesen Handbüchern