- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Login incorrect - Urgent help required.
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
04-01-2005 12:45 AM
04-01-2005 12:45 AM
How can I change the owner and group to bin:bin to /user partition without login? Is reboot is going to help?
Please help me. Thanks in advance.
Rao
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 12:47 AM
04-01-2005 12:47 AM
Re: Login incorrect - Urgent help required.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 01:28 AM
04-01-2005 01:28 AM
Re: Login incorrect - Urgent help required.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 01:38 AM
04-01-2005 01:38 AM
Re: Login incorrect - Urgent help required.
Either way, whether you go through single user mode or just log in as root, the only way to fix this is to have root change the ownership of the directory.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 01:54 AM
04-01-2005 01:54 AM
Re: Login incorrect - Urgent help required.
Open Module: Owner of the Module /usr/lib/security/libpam_unix.1 is not root.
Is it goes to single user mode, if I off the power to the server? Is it accept root login and password?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 02:15 AM
04-01-2005 02:15 AM
Re: Login incorrect - Urgent help required.
You can power of the server. I think no trouble with Oracle database, it will recover automaticaly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 02:22 AM
04-01-2005 02:22 AM
Re: Login incorrect - Urgent help required.
I will reboot the server today evening as Oracle database is accessed by users at present.
Rao
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 02:35 AM
04-01-2005 02:35 AM
SolutionYou will then have to:
bo p0
answer yes to "interact with IPL"
then, at ISL>
hpux -is
You will have to mount /usr and /users
But it sounds like this is the real isse:
/usr/lib/security/libpam_unix.1 should be owned by root:sys
Sounds like you may have chown'ed your usr tree - yikes!
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 02:39 AM
04-01-2005 02:39 AM
Re: Login incorrect - Urgent help required.
Simply recycling power will not change the behavior of the system. I am supposing that your system is not configured as a trusted system. Just halt auto boot sequence at PDC Prompt. ( Press any key within 10 Sec)
Then at PDC prompt give 'boot pri' and select Y when it prompts for Interact with ISL. Now at ISL prompt give `hpux -is`
If your system is not configured as trusted system then on system console it will directly come to # prompt from where u can do the required things and then can reboot normally.
HTH,
Devender
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 02:45 AM
04-01-2005 02:45 AM
Re: Login incorrect - Urgent help required.
What is the sequence (Ctrl+d, Ctrl+c) to do manual startup of OS while rebooting?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 02:52 AM
04-01-2005 02:52 AM
Re: Login incorrect - Urgent help required.
Have you tried doing a "su" to become root?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-01-2005 05:22 AM
04-01-2005 05:22 AM
Re: Login incorrect - Urgent help required.
The error you're seeing about PAM is the login security which has detected a possible hacker by seeing that certain security libraries are not owned correctly. Try su but I suspect that that will also fail as 11.11 uses PAM for all authentication, so single user mode is about all you can do. Luckily, chmod is located in /sbin so in single user mode, you'll have a valid copy. Use:
/sbin/chown-R bin:bin /usr
This is about as close as you can get to a working system since there are dozens of files and directories that have different owners. Most of them are root:sys, but in /usr/bin mail and rmail need root:mail ownership, the rest og the non-bin:bin files and directories are root:sys and root:other.
When using dangerous commands, ESPECIALLY when you use pattern matching (like *), always type the command with echo in front of it:
echo chown -R /u*
What you will see is what chmod will see when you remove the echo.
Bill Hassell, sysadmin