Operating System - Linux
1767188 Members
6116 Online
108959 Solutions
New Discussion юеВ

How to enable rsh on linux

 
S.Kumaresan_1
New Member

How to enable rsh on linux

I am installing Veritas Backup Exec Remote Agent on linux Server and I getting the below message:

Verify communication with (Hostname)....ping successful.....is an unsupported platform
Attempting rsh with (Hostname)....rsh on (Hostname) results in extraneous characters
CPI WARNING V-9-10-1020
mail cannot communicate with or does not have rsh
permissions with the following system (Hostname)

I've attempted by adding 'rsh', 'rlogin', 'rexec' in /etc/securetty

I get:
Trying krb4 rsh...
connect to address (Hostname): Connection refused
trying normal rsh (/usr/bin/rsh)
(Hostname): Connection refused

Can anyone help me to solve this problem...

Thanks & Regards

Kumar
2 REPLIES 2
Alexander Chuzhoy
Honored Contributor

Re: How to enable rsh on linux

On the Linux backup client:
1. Add a file /root/.rhosts with the IP of the backup server.

2. Execute 'chkconfig rsh on'
Armin Norouzi
Frequent Advisor

Re: How to enable rsh on linux

1) Install rsh-server package on the linux machine.
2) Add the ip address and the user of the backup server to .rhosts:
# echo "192.168.100.100 root" >> ~/.rhosts
3) Start required services:
# chkconfig xinetd on
# chkconfig rsh on
# chkconfig rexec on
# chkconfig rlogin on
# service xinetd restart