[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] Autostarting



Asif Bashir wrote:
> 
> I have added the following command to the /etc/rc.d/rc.local at the end of
> the file:
> 
> /usr/local/realserver7.0/Bin/rmserver /usr/local/realserver7.0/rmserver.cfg
> &
> 
> the realserver does not seem to autostart

There is no need to background the process in rc.local, so you
don't need to add the '&' on to the end.  But as a suggestion,
you might want to redirect stderr and stdout to a log file
for more diagnostic informaion

/usr/local/realserver7.0/Bin/rmserver
/usr/local/realserver7.0/rmserver.cfg \
	>> /var/log/messages 2>&1

Jeff