- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: problem with RH ES 4
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
07-06-2005 10:31 PM
07-06-2005 10:31 PM
problem with RH ES 4
I have installed a brand new linux machine, that runs Red Hat Enteprise Server 4, with kernel version of 2.6.9-5.ELsmp.
i have the following problems: I can't login with telnet with user root.
commenting the first line in /etc/pam.d/login does not work, the way it used to work on RH 3 machines.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 01:29 AM
07-07-2005 01:29 AM
Re: problem with RH ES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 01:34 AM
07-07-2005 01:34 AM
Re: problem with RH ES 4
#%PAM-1.0
#auth required pam_securetty.so
auth required pam_stack.so service=system-auth
auth required pam_nologin.so
account required pam_stack.so service=system-auth
password required pam_stack.so service=system-auth
pam_selinux.so close should be the first session rule
session required pam_selinux.so close
session required pam_stack.so service=system-auth
session optional pam_console.so
pam_selinux.so open should be the last session rule
session required pam_selinux.so multiple open
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 02:03 AM
07-07-2005 02:03 AM
Re: problem with RH ES 4
I think the telnet is built/hardcoded to verify the securettys file on this version, or to not allow root logins at all. If you have the telnet-server source, check the spec file.
You can try configuring the /etc/securettys file just in case.
Is better if you use secure shell instead telnet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2005 03:00 AM
07-07-2005 03:00 AM
Re: problem with RH ES 4
alright your problem is simple. you have to add the tty entry (most likely it is /dev/pts/1, /dev/pts/2 etc...) in /etc/securetty file which controls what are the tty sessions where root is allowed to login.
by default root is allowed only in consoles (/dev/tty1 to 12). so better add pts entries and you should be fine.
but as suggested, avoid telnet and use ssh
Hope this helps,
Gopi