- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- rlogin problem
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-19-2007 04:34 PM
11-19-2007 04:34 PM
We have 5 HP UX PA-RISC servers. Name of the servers as follows
DB1
DB2
APP1
APP2
DB Test
In which i can rlogin form DB1 & DB Test to remaining servers. But im not able
to rlogin from DB2 APP1 & APP2
Error message is
rlogin: This program requires super user privileges
Please help!!!
Note: Im login in as a local user and do rlogin in DB1 & DB Test in which i can get access to rlogin
Regards,
Din
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 04:59 PM
11-19-2007 04:59 PM
Re: rlogin problem
Have you checked .rhosts file of the user
through which u tryin to do rlogin.
you may also check /etc/hosts.allow.
Hope this would help.
Kapil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 05:16 PM
11-19-2007 05:16 PM
Re: rlogin problem
Another addition, your /etc/hosts should contain the other 4 hosts if you wanted to do rlogin between them.
Regards,
Sandy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 05:34 PM
11-19-2007 05:34 PM
Re: rlogin problem
I have above mentioed entries in my /etc/hosts,and .rhosts file in users home directory. But still im getting the error. Thank you very much for your reply.
Regards,
Din
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 05:57 PM
11-19-2007 05:57 PM
Solutionrlogin program?
Around here:
dy # ls -l /usr/bin/rlogin
-r-sr-xr-x 1 root bin 40960 Sep 20 2006 /usr/bin/rlogin
If I remove the setuid bit, it fails as you
describe:
dy # cp /usr/bin/rlogin /usr/bin/rloginX
dy # chmod 555 /usr/bin/rloginX
Now, as a non-root user, with the normal
permissions:
dy $ /usr/bin/rlogin alp
I'm ALP. Who are you?
Username: [...]
But without the setuid bit:
dy $ /usr/bin/rloginX alp
rlogin: This program requires super user privileges
Not being owned by root could have a similar
effect.
Apparently, the message means what it says.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 06:08 PM
11-19-2007 06:08 PM
Re: rlogin problem
i never saw that....can you please explain a bit why it is happening like this......
when other have execute permission in your example
-r-sr-xr-x
BR,
Kapil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 06:09 PM
11-19-2007 06:09 PM
Re: rlogin problem
i never saw that....can you please explain a bit why it is happening like this......
when other have execute permission in your example
-r-sr-xr-x
BR,
Kapil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 06:25 PM
11-19-2007 06:25 PM
Re: rlogin problem
> is happening like this......
_Is_ the ownership or permissions of your
rlogin program wrong (on the systems where
you see the problem)? (I showed you mine,
...)
If so, is your question, "How did it/they get
to be wrong?"?
I can't know, I can only guess.
Possibly more important, if the attributes of
_this_ program are bad, how many other
programs are also damaged?
"man swverify", and look for
"check_permissions"?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 06:36 PM
11-19-2007 06:36 PM
Re: rlogin problem
check permission as well.
Here are two ways to address this issue:
1. Change the permissions of /home to drwxr-xr-x (755).
2. Change the ownership of /home to root:users.
With permissions set to 755, all users have read access to the directory,
so the connection succeeds. Similarly, with the ownership changed to
"group = users", again the connection succeeds because "users" is the
primary group of user1 and the permissions are set to allow "group"
access (i.e. 750).
WK
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 07:20 PM
11-19-2007 07:20 PM
Re: rlogin problem
Thank you to the team whoever replied to my thread.
Regards,
Din