- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- rsh deined
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
11-09-2004 12:18 PM
11-09-2004 12:18 PM
Permission denied.
What must I configure to perform this task?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 12:43 PM
11-09-2004 12:43 PM
Re: rsh deined
Consider replacing the insecure rsh with openssh, which ships on most modern Linux distributions.
Attaching a doc for SAFE password free ssh instead of rsh
SEO
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
11-09-2004 01:03 PM
11-09-2004 01:03 PM
Re: rsh deined
>root home diredctory of the 1.1.1.1
>machine, make sure it allows appropriate
>access.
I do not have a file named /root/.rhosts
Should I create it? what should it be the content of that file?
>Consider replacing the insecure rsh with
>openssh, which ships on most modern Linux
>distributions.
Thanks for the tip, but this is for an Oracle RAC interconnect and this private network is completely separated from the rest of the network nor internet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 02:34 PM
11-09-2004 02:34 PM
Re: rsh deined
smp3-1m root
smp3-1 root
pluto smsadmin
metis smsadmin
sce3 smsadmin
sce4 smsadmin
where first column is box (if name must be in /etc/hosts or DNS, IP is also allowed), second one trusted user
another way is use /etc/hots.equiv containing trasted box only, name or IP
(After finishing don't forget assign the points, you are doing it very rarely, it is good for all forumers ;-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 07:25 PM
11-09-2004 07:25 PM
Re: rsh deined
- add client hostname to .rhosts
- if we speak about root user - add "rsh" line to /etc/securetty file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 02:34 AM
11-10-2004 02:34 AM
Re: rsh deined
I have tried with hosts.equiv and with .rhosts but the problem is still exactly in the same way.
[root@RAC2 root]# cat .rhosts
Nodo1 oracle
Nodo2 oracle
RAC1 oracle
RAC2 oracle
[root@RAC2 root]# cat /etc/hosts.equiv
Nodo1 oracle
Nodo2 oracle
RAC1 oracle
RAC2 oracle
[root@RAC2 root]# cat /etc/hosts
172.16.11.27 RAC1
1.1.1.2 Nodo2
1.1.1.1 Nodo1
172.16.11.28 RAC2
# Do not remove the following line, or various programs
# that require network functionality will fail.
Jan:
>(After finishing don't forget assign the
>points, you are doing it very rarely, it
>is good for all forumers ;-)
I think it is not good to assign points to replays which have not given me a solution to my problem, because all of that would be assigned with zero ('0'). I prefer to wait until the issue is solved and then assign points the the replays that pointed me to the solution.
THANKS a lot in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 02:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2004 07:47 PM
11-14-2004 07:47 PM
Re: rsh deined
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 01:40 AM
11-15-2004 01:40 AM
Re: rsh deined
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 01:58 AM
11-15-2004 01:58 AM
Re: rsh deined
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 02:45 PM
11-15-2004 02:45 PM
Re: rsh deined
1. Check for rsh package using
# rpm -qa | grep rsh
following should be present.
rsh-0.17-14
rsh-server-0.17-14
If rsh-server package is not present, install the package.
2. Check rsh configuration using
# chkconfig --list rsh
If rsh is OFF, then make it ON as
# chkconfig rsh on
3. Create a file .rhosts containing '+' as its content in the root directory. ( Specify your own remote shell configuration with hostname or ip-address, username )
4. Check the content of the file /etc/securetty for rsh, rexec, rlogin. If it does not contain them, add them.
5. Comment the line "auth required pam_rhosts_auth.so" in the file /etc/pam.d/rsh.
6. Now you can execute any command on the remote machine using rsh -l
HTH.