sclind,
What is the output if you run:
# hares -display CDproc -attribute State
# ps -ef |grep cdpmgr ### from both good and bad nodes
From your earlier reply ( https://www-secure.symantec.com/connect/forums/vcs-error-v-16-10031-9512-inactivenodename-processmyprocess-process-does-not-exist#comment-6451691 )
Process CDproc (
Critical = 0
PathName = "/connect_direct/ndm/bin/cdpmgr"
Arguments = "/connect_direct/ndm/bin/cdpmgr -i /connect_direct/ndm/cfg/aucdirect/initparm.cfg"
)
The Arguments attribute should be the arguments that are passed to the binary, ie: if your full command is
/connect_direct/ndm/bin/cdpmgr -i /connect_direct/ndm/cfg/aucdirect/initparm.cfg
the value for Arguments should be "-i /connect_direct/ndm/cfg/aucdirect/initparm.cfg" (ie: should not include the pathname)
Note: UNKNOWN means VCS cannot determine the state of the process; ie: the Monitor entry point (which "Checks to see if the process is running by scanning the process table for the name of the executable pathname and argument list") is not getting the expected output. If the Arguments attribute is not configured correctly this may be causing/contributing to the issue.
Also, is this a Solaris system?
From Process online entry point (5.0MP3, but same limitation would apply to 5.1 if Solaris)
--------------------
# If the command + argument length happens to be greater than or equal to 78
# characters we can have a problem. Current implementations of the solaris ps
# utility and proc file structures terminate the command + argument string
# at the 80 characters. This could cause a problem if two process resources
# had the same first 78 characters or more , i.e. say they had very long identical
# paths to execution and similar initial arguments. In such a case there is no
# way for the monitor script to know the true identity of the process being
# executed. Hence the warning message.
#
if ($Cmdlength >= 78){
VCSAG_LOG_MSG ("W", "Command length is greater than 78 characters. This might pose potential monitoring problems.", 9001);
}
exit;
--------------------