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
01-27-2007 06:28 AM
01-27-2007 06:28 AM
Hi all
user account n can get it root level priveldge......using su ,Same happen at console too.....
ThanksAll.....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2007 07:05 AM
01-27-2007 07:05 AM
Re: Hi all
- root account is disabled if you are running in trusted mode.
To enable root login use:
# /usr/lbin/modprpw -k root
- check /etc/securetty file.
regards;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-27-2007 01:52 PM
01-27-2007 01:52 PM
Re: Hi all
and i checked /etc/securetty file too..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2007 02:02 PM
01-28-2007 02:02 PM
Re: Hi all
Does it display some kind of error message when you try to log on ?.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2007 07:46 PM
01-28-2007 07:46 PM
Re: Hi all
and welcome to the forums !
Depending on what error message you get, I suspect somebody has disabled direct root access by modifying /etc/profile.
So when you login with root the login is rejected (even from console), but /etc/profile would not be used for su access, so it would work.
You need to amend /etc/profile to have:
if [ $LOGNAME = root ]
then
if [ `tty` != "/dev/console" ]
then
echo "Error: root logins are only allowed on the console."
exit 1
fi
fi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2008 09:58 AM
01-03-2008 09:58 AM
Re: Hi all
If your screen just disapper after you log in to root , then chances are that somebody has put exit in .profile file so before coming to prompt you are thwown out of system.
You can check from console and see if some error is coming.
Hope this help !!!!
BR,
Kapil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2008 11:24 PM
01-03-2008 11:24 PM
Re: Hi all
I was expecting this king of answer form u ..
Thansk a lot..