- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX Boot Process
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-18-2001 04:24 PM
01-18-2001 04:24 PM
I am using a N-Class Server running hp-ux1100.
When booted the system goes to single user
mode.I have to bring it to multi user mode
each time by giving init 3 command.
/etc/inittab file has the default run level set to 3.
Can anyone please help?
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2001 07:57 PM
01-18-2001 07:57 PM
SolutionHave you checked for boot errors in /etc/rc.log?
It sounds like you have something failing very early in the rc scripts.
What is root's login shell?
If it is anything but /sbin/sh, that can cause problems at system initialisation time. If root's login shell is /usr/bin/ksh, for example, your shell resides on a filesystem which is not yet mounted, and so the rc scripts have no shell to run them.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2001 08:02 PM
01-18-2001 08:02 PM
Re: HP-UX Boot Process
without some more info it is very hard to determine why it won't boot further.
One thing you can try if you don't use DHCP is to do the following:
cd /sbin
chmod -x auto_parms
Other than that watch closely what is written to the console. That might give us a hint.
Another place you can check would be the /etc/rc.log file
Steffi Jones
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2001 03:00 AM
01-19-2001 03:00 AM
Re: HP-UX Boot Process
It could be that the AUTO lif file has been set to force single user mode.
Check the contents with the command:-
lifcp /dev/rdsk/c?t?d0:AUTO -
where c?t?d0 is your boot disk.
If the result reads 'hpux -is' then this is your problem. You can amend the AUTO file with the mkboot -a command.
mkboot -a hpux /dev/rdsk/c?t?d0
is sufficient for a standard boot or if you have mirrored boot disks and want to ensure that you can still boot if you lose one of them then use:-
mkboot -a "hpux -lq" /dev/rdsk/c?t?d0
Regards,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-19-2001 09:59 AM
01-19-2001 09:59 AM
Re: HP-UX Boot Process
Changing the root's login shell to /sbin/sh
from /usr/bin/ksh in the passwd file resolved
the problem.
Thank's steffi,john and others for your time.