- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ICOD boot error - not!
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
05-22-2008 04:09 AM
05-22-2008 04:09 AM
ICOD boot error - not!
Output from "/sbin/rc2.d/S602icod start":
----------------------------
ERROR: The following low-level error occurred:
CIM_ERR_NOT_SUPPORTED
ERROR: /etc/inittab is missing the required entry for the Instant Capacity daemon (icapd).
Refer to the icapd (1m) man page for more
information.
ERROR: The following low-level error occurred:
CIM_ERR_NOT_SUPPORTED
ERROR: The Instant Capacity (iCAP) Agent
was unable to reconcile the number of active
processors with the intended number of active
processors. For further information about
the Instant Capacity status, run icapstatus (1m).
"/sbin/rc2.d/S602icod start" FAILED
The other host just skips the startup. I've checked /etc/inittab - no entry exists. I've uninstalled/reinstalled icod but still get the error msg.
We don't have/use icod on these systems.
Why is this system behaving this way and how can I "deactivate" icod's startup?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2008 06:14 AM
05-22-2008 06:14 AM
Re: ICOD boot error - not!
The first thing the start script does is check whether this is an iCOD capable system by running "icapstatus -z". This returns 4 on systems that don't support iCOD and the script then exits. Your system doesn't support iCOD so the icapstatus should just retrun 4, but the icapstatus command is also dependent on WBEM, and in your case it looks like there is something wrong with WBEM on your system, hence the CIM error.
There are 2 choices you have here to resolve this:
1) Figure out what is wrong with WEBM (start by seeing if cimserver is running).
2) Just delete the symbolic link /sbin/rc2.d/S602icod - its never going to do anything usefull on a J6500 anyway.
HTH
Duncan
I am an HPE Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2008 07:21 AM
05-22-2008 07:21 AM
Re: ICOD boot error - not!
Any ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2008 07:59 AM
05-22-2008 07:59 AM
Re: ICOD boot error - not!
The icapstatus command called from S602icod attempts to interrogate the system using CIM.
As you don't really care about icod on a J class server, I figured the easiest thing to do would be to just remove the symbolic link to the startup script.
But if you want to follow this through and figure out what is wrong with WBEM, start using this checklist:
http://docs.hp.com/en/B8465-90017/ch07s01.html
HTH
Duncan
I am an HPE Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2008 08:02 AM
05-22-2008 08:02 AM
Re: ICOD boot error - not!
/sbin/rc2.d/S602icod
/sbin/rc1.d/K398icod
and rename or remove /sbin/init.d/icod from the system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2008 03:57 AM
05-23-2008 03:57 AM
Re: ICOD boot error - not!
/sbin/rc1.d/K398icod
Instead of removing these two, there should be a configuration file in /etc/rc.config.d/ that you can edit or uninstall ICOD.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2008 04:09 AM
05-23-2008 04:09 AM
Re: ICOD boot error - not!
this is what the startup script does:
/usr/sbin/icapstatus -z
if [[ $? = 4 ]]; then
### This is not a supported system
exit 2; ### N/A
Something went wrong with your system - it does not exit the script at this point.
What result do you get from the icapstatus command?
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2008 04:17 AM
05-23-2008 04:17 AM
Re: ICOD boot error - not!
As for the icapstatus cmd it returns:
icapstatus -z
ERROR: The following low-level error occurred:
CIM_ERR_INVALID_NAMESPACE: root/cimv2/npar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2008 04:33 AM
05-23-2008 04:33 AM
Re: ICOD boot error - not!
Then it seems that you should swremove ICOD.
>### This is not a supported system
exit 2; ### N/A
>it does not exit the script at this point.
Why do you say that? exit 2 is probably a signal to rc(1m) that there was an error.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2008 04:41 AM
05-23-2008 04:41 AM
Re: ICOD boot error - not!
Here is the problem:
icapstatus -z
ERROR: The following low-level error occurred:
CIM_ERR_INVALID_NAMESPACE: root/cimv2/npar
Normally it should look like this:
# /usr/sbin/icapstatus -z
#
# echo $?
4
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2008 04:43 AM
05-23-2008 04:43 AM
Re: ICOD boot error - not!
;-)
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2008 06:15 PM
05-23-2008 06:15 PM
Re: ICOD boot error - not!
Yes. My system exits and rc.log says SKIPPED.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 02:07 AM
05-29-2008 02:07 AM
Re: ICOD boot error - not!
# cimprovider -l -s
MODULE STATUS
OperatingSystemModule OK
ComputerSystemModule OK
ProcessModule OK
IPProviderModule OK
SDProviderModule OK
HP_NParProviderModule OK
HP_VParProviderModule OK
HP_iCODProviderModule OK
HP_iCAPProviderModule OK
HP_GiCAPProviderModule OK
# cimserver -v
A.02.05.04
# cimconfig -l -c
sslClientVerificationMode=disabled
enableSubscriptionsForNonprivilegedUsers=false
shutdownTimeout=30
authorizedUserGroups=
enableRemotePrivilegedUserAccess=true
enableHttpsConnection=true
enableNamespaceAuthorization=false
enableHttpConnection=false
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 03:40 AM
05-29-2008 03:40 AM
Re: ICOD boot error - not!
# cimprovider -l -s
MODULE STATUS
OperatingSystemModule OK
ComputerSystemModule OK
ProcessModule OK
IPProviderModule OK
SDProviderModule OK
# cimserver -v
A.02.07
#root@nesaweb/homeroot #cimconfig -l -c
enableAuditLog=false
sslClientVerificationMode=disabled
enableSubscriptionsForNonprivilegedUsers=false
shutdownTimeout=30
authorizedUserGroups=
enableRemotePrivilegedUserAccess=true
enableHttpsConnection=true
enableNamespaceAuthorization=false
enableHttpConnection=false
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 03:46 AM
05-29-2008 03:46 AM
Re: ICOD boot error - not!
HP_iCODProviderModule OK
HP_iCAPProviderModule OK
can you check that on the other "working" system?
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 04:15 AM
05-29-2008 04:15 AM
Re: ICOD boot error - not!
root@nesadev/homeroot #cimprovider -l -s
MODULE STATUS
OperatingSystemModule OK
ComputerSystemModule OK
ProcessModule OK
IPProviderModule OK
EMSHAProviderModule OK
IOTreeModule OK
HPUXLVMProviderModule OK
HP_NParProviderModule OK
HPUXSCSIProviderModule OK
HPUXFCProviderModule OK
HPUXLANProviderModule OK
HP_iCODProviderModule OK
HP_iCAPProviderModule OK
HP_GiCAPProviderModule OK
SFMProviderModule OK
HP_VParProviderModule OK
HP_UtilizationProviderModule OK
SDProviderModule OK
cimserver is A.2.05. We had the same versions on the problem box but I could not resolve this icod problem so I uninstalled icod and installed 2.07.
Are these modules included in 207? Is there some other step I'm missing?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 04:29 AM
05-29-2008 04:29 AM
Re: ICOD boot error - not!
# swlist -l file|grep -i provider|grep -i icod
iCOD.ICOD-COMMON: /opt/icod/mof/HP_GiCAPProviderClasses.mof
iCOD.ICOD-COMMON: /opt/icod/mof/HP_GiCAPProviderReg.mof
iCOD.ICOD-COMMON: /opt/icod/mof/HP_GiCAPProviderReg25.mof
iCOD.ICOD-COMMON: /opt/icod/mof/HP_iCAPProviderClasses.mof
iCOD.ICOD-COMMON: /opt/icod/mof/HP_iCAPProviderReg.mof
iCOD.ICOD-COMMON: /opt/icod/mof/HP_iCAPProviderReg25.mof
iCOD.ICOD-COMMON: /opt/icod/mof/HP_iCODProviderReg.mof
iCOD.ICOD-COMMON: /opt/icod/mof/HP_iCODProviderReg25.mof
iCOD.ICOD-RUN: /opt/icod/lib/libiCODProviderModule.1
So maybe there is something wrong with your icod bundle.
Run swverify and if needed swconfig \*
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 06:15 AM
05-29-2008 06:15 AM
Re: ICOD boot error - not!
I reinstalled icod and get:
* Beginning the Configure Execution Phase.
* Filesets: 1
ERROR: Unable to update /opt/icod/mof/HP_iCODComplexClass.mof:
PGS04812: Parsing error: parse error: PGS04830: Could not find
declaration for qualifier named Description
ERROR: Unable to update /opt/icod/mof/HP_iCAPProviderClasses.mof:
PGS04812: Parsing error: parse error: PGS04830: Could not find
declaration for qualifier named Description
ERROR: Unable to update /opt/icod/mof/HP_GiCAPProviderClasses.mof:
PGS04812: Parsing error: parse error: PGS04830: Could not find
declaration for qualifier named Key
Configuring GiCAP XML files.
Checking for partitionable system.
ERROR: Software configuration has failed. After addressing the issues
in the following output, configure this software with
'swconfig iCOD'.
ERROR: The following low-level error occurred:
CIM_ERR_INVALID_CLASS: HP_NParLocalPartition
ERROR: The "configure" script for "iCOD.ICOD-RUN" failed (exit code
"1"). The script location was
"/var/adm/sw/products/iCOD.2/ICOD-RUN/configure".
* This script had errors and the execution of this fileset
cannot proceed until the problem is fixed. Check the above
output from the script for further details.
* Running config clean command /usr/lbin/sw/config_clean.
* Summary of Execution Phase:
ERROR: Installed iCOD.ICOD-RUN,l=/,r=B.11.11.08.03.01.03
ERROR: 1 of 42 filesets had Errors.
* 41 of 42 filesets were Skipped.
ERROR: The Execution Phase had errors. See the above output for
details.
Ran swverify B9073BA and it fails for ICOD-COMMON and ICOD_RUN.
Running swconfig B9073BA I get 41 filesets already configured 1 failed. teh job shows the same errors as above.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 07:20 AM
05-29-2008 07:20 AM
Re: ICOD boot error - not!
Any errors for swverify over all products?
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 10:06 AM
05-29-2008 10:06 AM
Re: ICOD boot error - not!
it reported a few errors most of which I don't think have any relevance to icod.
In summary other than some file permissions/size/mtime issues (non icod/wbem) the job reported -
* The software "iCOD.ICOD-RUN,l=/,r=B.11.11.08.03.01.03" is not
in the correct state (AVAILABLE, INSTALLED, or CONFIGURED).
You will need to recopy, reinstall or configure this software before operating on software that depends on it.
The corequisite "iCOD.ICOD.RUN,l=/,r=B.11.11.08.03.01.03" for fileset "iCOD.ICOD-COMMON,l=/,r=B.11.11.08.03.01.03" cannot be
successfully resolved.
ERROR: The dependencies for fileset
"iCOD.ICOD-OMMON,l=/,r=B.11.11.08.03.01.03" cannot be resolved (see previous lines).
NOTE: Volatile file "/.profile" missing.
(we move root's account)
Fileset "HPPowerManagerServer.exec,l=/,r=4.1Build8" had fileerrors.
(not using this)
ERROR: File "/opt/java1.4 ...." missing.
ERROR: Verify failed Jdk14.JDK14-COM,l=/opt/java1.4,r=1.4.2.11.00I ran swverfy on the entire system
(We installed java1.5)
ERROR: Verify failed hpuxwsTOMCAT.TOMCAT,l=/opt/hpws/tomcat,r=A.5.5.9
(not configured/used)
ERROR: Verify failed iCOD.ICOD-COMMON,l=/,r=B.11.11.08.03.01.03
ERROR: Verify failed iCOD.ICOD-RUN,l=/,r=B.11.11.08.03.01.03
Not much help here.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2008 11:06 AM
05-29-2008 11:06 AM
Re: ICOD boot error - not!
Prerequisites for icod are
WBEMServices.WBEM-CORE,r>=A.02.00.04.%
NParProvider.NPAR-RUN,r>=B.12.01.06.02
(my version is iCOD.ICOD-RUN,r=B.11.11.08.01)
So there is something wrong with 1 of these bundles.
I would try to install the latest version (dec 07) of icad, which is 08.03.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2008 09:11 AM
06-11-2008 09:11 AM
Re: ICOD boot error - not!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2008 09:25 AM
06-11-2008 09:25 AM
Re: ICOD boot error - not!
How about assigning some points?
:-))
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!