Tuesday, January 4, 2011

Configure rsh on Linux

1- Go to the Linux source CDs and search for the 2 packages rsh* and rsh-server and install the 2 packages rsh and rsh-server with these commands as root user

# rpm -Uvh rsh*
# rpm -Uvh rsh-server*

2- Enable remote shell and rlogin by doing the following as root user and ensure that there's no error

# chkconfig rsh on
# chkconfig rlogin on
# service xinetd reload

3- Create the /etc/hosts.equiv file as root user

# touch /etc/hosts.equiv
# chmod 600 /etc/hosts.equiv
# chown root:root /etc/hosts.equiv

4- Edit the /etc/hosts.equiv file to include all the nodes in your installation

+node1 oracle
+node2 oracle

5- Run all these steps on all nodes in your installation.

No comments: