- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how i can let root to login in Linux
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
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
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
тАО06-06-2000 11:08 PM
тАО06-06-2000 11:08 PM
how i can let root to login in Linux
(Redhat 6.2),include root
i modify /etc/ftpuser and /etc/ftpaccess,
but couldn't yet.maybe i have a mistake with
it,who can tell me how to do? thank u!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2000 11:26 AM
тАО06-07-2000 11:26 AM
Re: how i can let root to login in Linux
First of all, check to insure that hte ftp daemon is in the /etc/services file.
Next, verify that there is an entry in the /etc/inetd.conf file. More than likely it is in both places.
Since the newer versions of Linux incorporate the tcp wrappers utility, you will also need to verify that the /etc/hosts.allow and /etc/hosts.deny are allowing the use of the ftp service.
Other than that, if all else fails, they you should review the authentication process for the ftpd daemon.
1) The user name must be in the password data base, /etc/passwd, or whatever is appropriate for the operating system, and the password must not be null. In this case a password must be provided by the client before any file operations may be performed.
2) The user name must not appear in the file /etc/ftpusers.
3) The user must have a standard shell returned by getusershell(3).
4) If the user name is ``anonymous'' or ``ftp'', an anonymous ftp account must be present in the password file (user ``ftp''). In this case the user is allowed to log in by specifying any password (by convention this is given as the client host's name).
hope that helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2000 07:32 PM
тАО06-07-2000 07:32 PM
Re: how i can let root to login in Linux
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-07-2000 11:02 PM
тАО06-07-2000 11:02 PM
Re: how i can let root to login in Linux
You should check if you have intalled FTP server (wu-ftpd-2.6.0-3.i386.rpm).
Next you should check if your login shell is in /etc/shells.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-08-2000 03:14 PM
тАО06-08-2000 03:14 PM
Re: how i can let root to login in Linux
To enter with root account in my linux box, i was make the following:
Edit the file /etc/pam.d/login and comment the line
auth required /lib/security/pam_securetty.so
with an #.
This works for me.
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО06-14-2000 09:08 AM
тАО06-14-2000 09:08 AM
Re: how i can let root to login in Linux
One coming with RH6.2 is 'wu-ftpd'.
Checking by using command
# rpm -qi wu-ftpd
If you can not find that package, install it by ftp a package from Redhat webpage or search from http://ftpsearch.lycos.com
If you find that package, try to check config by using command
# /usr/sbin/ckconfig
And see if all configuration files are correct.