Hello guys,
I am trying to setup OCUM 6.3 on a RHEL 6.5 box.
it is failing during the netapp-ocum packages setup.
Message I have is :
Mar 09 19:37:22: Configuration complete. Will start ocie services ...
Mar 09 19:40:03: Started NetApp OnCommand Insight Essentials Server service.
Mar 09 19:40:03: Adding maintenance user to um user
Mar 09 19:40:03: maintenance user is not added to um, adding ...
Error: Unable to communicate with server. Please ensure the server is running.
I found where in the install script it failes :
function create_maintenance_user () {
log "Adding maintenance user to um user"
# Check if umadmin is already added as um user. If not add it.
cmd="select name from ocum.authorizationunit where authorizationUnitType='MAINTENANCE_USER';"
ret=`mysql --batch -N -e "$cmd"`
if [[ ! -z $ret ]] ; then
log "maintenance user=$ret"
log "maintenance user already exist in um"
else
log "maintenance user is not added to um, adding ..."
su - jboss -c "dfm user add -t maintenance_user ${maintenance_user}" >> $LOG 2>&1
fi
}
the failling command is related to "dfm user add".
I also tried to log in as jboss and issue this same command with no more success ;(
Do you have an idea of what is wrong with my setup ?
Thanks a lot.