The startup script is trying to call the daemon helper function defined
in /etc/rc.d/init.d/functions. This is attempting to kill the
existing server, and start the new instance.
It does this by calling
daemon --user $SLIMSERVER_USER $SLIMSERVER_BIN $SLIMSERVER_ARGS
Your SLIMSERVER_USER and the other variables appear to be undefined.
They should be installed and defined in /etc/sysconfig/slimserver.
Code:
--------------------
# cat /etc/sysconfig/slimserver
# Edit this to suit your setup
SLIMSERVER_USER="slimserver"
SLIMSERVER_HOME="/usr/local/slimserver"
SLIMSERVER_CFG="/etc/slimserver.conf"
SLIMSERVER_LOG="/tmp/slimserver.log"
SLIMSERVER_ARGS="--daemon --prefsfile=$SLIMSERVER_CFG
--logfile=$SLIMSERVER_LOG"
--------------------
It seems that your RPM install did not work correctly, since you are
also missing the /etc/slimserver.conf file as well.
--
MrC
_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/unix