rx7640恢复系统后console登录,报错:
INIT: Command is respawning too rapidly.
Will try again in 5 minutes.
Check for possible errors.
id:icap "/usr/lbin/icapd # Instant Capacity daemon"
(0)
最佳答案
Environment:
HP-UX 11.31 (11i v3).
# swlist -l fileset |grep \#\ WBEMServices
# WBEMServices A.02.09.02 WBEM Services CORE Product
# swlist |grep -i sysfaul
SysFaultMgmt C.07.00.04.06 HPUX System Fault Management
After a system came backup after a power failure, the following message at the console is seen:
INIT: Command is respawning too rapidly.
Will try again in 5 minutes.
Check for possible errors.
id:icap "/usr/lbin/icapd # Instant Capacity daemon"
Ran /usr/lbin/icapd
icapd: Caught unexpected exception
# cimprovider -ls
PGC00601: The CIM server may not be running.
# ps -ef |grep cimserver
showed the process running
# cimserver -s
said that it was still running
Killed all the cim process then tried to restart cimserver:
/sbin/init.d/cim_server start
PGS10033: The CIM Server is not started:
PGS00415: SSL exception:
PGS09203: Not enough seed data in random seed file: /var/opt/wbem/cimserver.rnd.
ERROR CODE 1
# ps -ef |grep -i prngd
root 7139 2814 1 17:37:48 console 0:00 grep -i prngd
Edited /etc/rc.config.d/prngd, changed PRNGD_START=0 to PRNGD_START=1, saved and exited file.
# /sbin/init.d/prngd.rc start
PRNGD (Pseudo Random Number Generator Daemon started
# /sbin/init.d/cim_server start
CIM cimserver started
# cimprovider -ls
MODULE STATUS OperatingSystemModule OK ComputerSystemModule OK ProcessModule OK IPProviderModule OK DNSProviderModule OK NTPProviderModule OK NISProviderModule OK SDProviderModule OK IOTreeModule OK HPUXLVMProviderModule OK AmgrAgentProviderModule OK EMSHAProviderModule OK HPUX_ProviderModule OK HP_NParProviderModule OK HP_ResParProviderModule OK HPUXRAIDSAProviderModule OK
Edited /etc/rc.config.d/prngd, changed PRNGD_START=0 to PRNGD_START=1, saved and exited file.
# /sbin/init.d/prngd.rc start
PRNGD (Pseudo Random Number Generator Daemon started
# /sbin/init.d/cim_server start
CIM cimserver started
# cimprovider -ls
MODULE STATUS OperatingSystemModule OK ComputerSystemModule OK ProcessModule OK IPProviderModule OK DNSProviderModule OK NTPProviderModule OK NISProviderModule OK SDProviderModule OK IOTreeModule OK HPUXLVMProviderModule OK AmgrAgentProviderModule OK EMSHAProviderModule OK HPUX_ProviderModule OK HP_NParProviderModule OK HP_ResParProviderModule OK HPUXRAIDSAProviderModule OK
Icapd started by itself from the /etc/inittab file.
Rebooted the server to see if it would startup cleanly. It did not, cimserver failed to start with the same error.
Looking at the start up sequence, it could be seen that cim_server started before the Random Number Generator.
grep Output /etc/rc.log | grep -e cimserver -e prngd.rc
Output from "/sbin/rc2.d/S600cimserver start":
Output from "/sbin/rc3.d/S99prngd.rc start":
There has to be another RNG. That starts before cimserver.
The above mentioned document shows that there is one built into the kernel:
# kcmodule -v rng
Module rng (0.1)
Description Strong Random Number Generator
Timestamp Thu Feb 15 16:31:29 2007 [45D4D131]
State unused
State at Next Boot unused
Capable loaded unused
Depends On interface HPUX_11_31_PERF:1.0
Its likely failing to start because of a IO problem.
As a workaround, moved S99prngd.rc to run level 1 from run level 3:
# rm /sbin/rc3.d/S99prngd.rc
# ln -s /sbin/init.d/prngd.rc /sbin/rc1.d/S99prngd.rc
It started fine.
(0)
到现场后再处理试试这个解决方案,谢谢
这个报错提示说明系统试图启动一个进程,但该进程因某种原因被频繁重启,所以系统停止重启该进程来防止耗尽资源,目前系统能正常启动嘛
(0)
谢谢,系统是可以启动,难怪说系统感觉相对慢一些
谢谢,系统是可以启动,难怪说系统感觉相对慢一些
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
到现场后再处理试试这个解决方案,谢谢