- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Server bootup and stopped halfway through rc2.d
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
09-01-2005 07:57 AM
09-01-2005 07:57 AM
Server bootup and stopped halfway through rc2.d
We had to reboot a server yesterday and thought it booted up alright until we found various apps/services not started. I checked the /etc/rc.log and found that it only made it partway through rc2.d. I can't find anything that hints as to why it stopped. Any ideas?
Here is the /etc/rc.log (the tail end of it anyway):
Starting mail daemon
Output from "/sbin/rc2.d/S540sendmail start":
----------------------------
/etc/mail/aliases: 7 aliases, longest 9 bytes, 88 bytes total
sendmail
Starting outbound connection daemons for DDFA software
Output from "/sbin/rc2.d/S550ddfa start":
----------------------------
"/sbin/rc2.d/S550ddfa start" SKIPPED
Start SNMP Master Network Management daemon
Output from "/sbin/rc2.d/S560SnmpMaster start":
----------------------------
Start OSPF MIB Network Management subAgent
Output from "/sbin/rc2.d/S565OspfMib start":
----------------------------
"/sbin/rc2.d/S565OspfMib start" SKIPPED
Start SNMP HP-UNIX Network Management subAgent
Output from "/sbin/rc2.d/S565SnmpHpunix start":
----------------------------
Start SNMP MIB-2 Network Management subAgent
Output from "/sbin/rc2.d/S565SnmpMib2 start":
----------------------------
Start SNMP Trap Dest Network Management subAgent
Output from "/sbin/rc2.d/S565SnmpTrpDst start":
----------------------------
Start DCE daemons
Output from "/sbin/rc2.d/S570dce start":
----------------------------
Beginning DCE startup...
NOTE: No components of DCE are configured.
Finished DCE startup.
"/sbin/rc2.d/S570dce start" SKIPPED
Start SNMP PCI FDDI Network Management subAgent
Output from "/sbin/rc2.d/S576SnmpFddi4 start":
----------------------------
Start RPC daemon if needed
Output from "/sbin/rc2.d/S590Rpcd start":
----------------------------
starting the DCE RPC Daemon
/opt/dce/sbin/rpcd
Start CIM cimserver subsystem
Output from "/sbin/rc2.d/S600cimserver start":
----------------------------
CIM cimserver started
Start Isogon License Server Daemon
Output from "/sbin/rc2.d/S600iforls start":
----------------------------
"/sbin/rc2.d/S600iforls start" SKIPPED
Initialize capacity on demand
Output from "/sbin/rc2.d/S602icod start":
----------------------------
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:01 AM
09-01-2005 08:01 AM
Re: Server bootup and stopped halfway through rc2.d
ps -ef|grep rc may tell you what is currently running from the boot. If ICOD or some other process that does not matter then kill it. The system will finish running the rest of the boot scripts.
You will still need to find out why ICOD is stuck.
I am not familiar with the processes associated with ICOD.
Someone else I am sure is.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:12 AM
09-01-2005 08:12 AM
Re: Server bootup and stopped halfway through rc2.d
HTH
-- Rod Hills
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:18 AM
09-01-2005 08:18 AM
Re: Server bootup and stopped halfway through rc2.d
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:26 AM
09-01-2005 08:26 AM
Re: Server bootup and stopped halfway through rc2.d
The script is just calling the command /usr/sbin/icod_stat -z
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 08:33 AM
09-01-2005 08:33 AM
Re: Server bootup and stopped halfway through rc2.d
ps -ef |grep icod
root 1330 1 0 Aug 30 ? 0:00 /usr/lbin/icodd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 10:21 AM
09-01-2005 10:21 AM
Re: Server bootup and stopped halfway through rc2.d
If you are sure you are not using the ICOD service, look to see if the file /var/adm/icod.log exists, try and stop it using the /sbin/init.d/icod stop. Then run the startup and see if you get any errors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2005 12:49 PM
09-01-2005 12:49 PM
Re: Server bootup and stopped halfway through rc2.d
As suggested it looks like the rc process has hung on the icod startup. It's interesting that you say it looks like this is running... now I don't know what icod is but if you want to ensure that your system starts up you'll have to see if it is indeed stuck on that init script.
Do a ps -ef | grep rc on your node and show us the output. You'll likely find that /sbin/rc2.d/S602icod start is still running. This will stop the next init scripts from starting because it does them sequentially.
What you'll find likely is that while a ps shows the icod process running it's not finished initialising properly or didn't exit properly so rc hasn't picked up on it and moved on.
Best bet is to kill the icod init script and watch as rc resumes where it was up to and finish booting properly. Then investigate what icod is, if it's important, is it running properly now and more importantly will this happen next time you boot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2005 02:23 AM
09-02-2005 02:23 AM
Re: Server bootup and stopped halfway through rc2.d
I did do a grep on the iocd startup script and it was not in the running processes list. I rebooted again last night and it all came up fine...so I guess that previous reboot just stopped at rc2.d and I will just chalk it up to "whatever". lol!
Thanks for the help everyone,
Sally
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-04-2005 11:46 AM
09-04-2005 11:46 AM
Re: Server bootup and stopped halfway through rc2.d
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2006 04:05 PM
01-09-2006 04:05 PM
Re: Server bootup and stopped halfway through rc2.d
Currently it took 1hr 30mins to bootup. I've logged a case to investigate the problem but i would like to put it on forum to discuss with the experts.
Previously it took only 20mins, now i tried using single user mode and bootup to 3rd level, it took only 15mins.
I have simply no idea what is wrong with the normal bootup, could anyone kindly tell me how to look for the source of this long bootup problem?
I figured it that there might be some hardware monitoring process that needs a long time to process during the bootup before HPUX.
Anyone has any advise, please give me some tips, thanks!
Sincerely,
Edmund