- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- rsh service
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 06:28 AM
03-08-2005 06:28 AM
[root@rac1 root]# chkconfig rsh on
error reading information on service rsh: No such file or directory
Any idea about this error and how to solve it?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 06:50 AM
03-08-2005 06:50 AM
SolutionThese services are on the install cd's. They are listed under legacy services.
rpm -q --all | grep rsh
If its installed, its part of /etc/xinetd.d and needs to be set from disable=yes to disable=no in that directory followed by:
service xinetd restart
Before you go to the trouble, think about this:
openssh
It does everything rsh does except its secure.
See the doc I'm attaching on password free setup.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 07:10 AM
03-08-2005 07:10 AM
Re: rsh service
I think I already have installed RSH:
[root@rac1 root]# rpm -q --all | grep rsh
rsh-0.17-17
>If its installed, its part of
>/etc/xinetd.d and needs to be set from
>disable=yes to disable=no in that
>directory followed by:
The directory /etc/xinetd.d does not show any file with a name like 'rsh'
Must I add it?
What must be the internal content?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 07:48 AM
03-08-2005 07:48 AM
Re: rsh service
The most common reason for people to choose rsh is because it is easily setup for passwordless connections, so I assume this is also your motivation. One thing that people don't seem to realize is that with passwordless rsh authentication you can do things like this:
rsh -l root hostname.domain.tld
and if your machine is in hosts.allow you are in as root without a password. This is due to the sufficient line in pam.
To do the same with ssh takes only slightly different commands and I would be glad to walk you through the setup if only to prevent a future nightmare for you.
--Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 08:13 AM
03-08-2005 08:13 AM
Re: rsh service
I am installing an Oracle RAC system and my current version of Oracle cannot support the use of SSH (it anounces that will be supported in future versions), so that my only way is using RSH.
But, what about my real problem to activate the RSH in my server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 09:12 AM
03-08-2005 09:12 AM
Re: rsh service
What does rpm -ql `rpm -qa |grep rsh` tell you?
If it looks like only the clients came with the package you'll need another rpm.
--Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 09:22 AM
03-08-2005 09:22 AM
Re: rsh service
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 02:21 PM
03-08-2005 02:21 PM
Re: rsh service
What Dave articulated is what I orginally met.
Do take the time to consider ssh when you have time.
I did try and make recommendation and answer the question. It would be rude of me to do otherwise.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2005 06:26 PM
03-08-2005 06:26 PM
Re: rsh service
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-09-2005 10:07 PM
03-09-2005 10:07 PM
Re: rsh service
Wim