Jan 19, 2006 #1 delfy MIS Feb 8, 2005 96 JM i normally start a service like this /etc/rc.d/init.d/psql start how can i get it to start at boot?
Jan 19, 2006 1 #2 thedaver IS-IT--Management Jul 12, 2001 2,741 US If you are using Redhat, Fedora, Centos: chkconfig --add psql (optional) chkconfig --level 35 psql on Otherwise you get into an effort to symlink from the /etc/rc.d/init.d/psql into /etc/rc3.d/ D.E.R. Management - IT Project Management Consulting http://www.dermanagement.com/ Upvote 0 Downvote
If you are using Redhat, Fedora, Centos: chkconfig --add psql (optional) chkconfig --level 35 psql on Otherwise you get into an effort to symlink from the /etc/rc.d/init.d/psql into /etc/rc3.d/ D.E.R. Management - IT Project Management Consulting http://www.dermanagement.com/
Jan 19, 2006 #3 Chacalinc Vendor Sep 2, 2003 2,043 US on Debian (and debian-based distros as Ubuntu) update-rc.d psql start NN 3 5 stop NN 3 5 where NN is the start number i.e.: /etc/rc3.d/SNNpsql /etc/rc3.d/KNNpsql Cheers. Chacal, Inc. Upvote 0 Downvote
on Debian (and debian-based distros as Ubuntu) update-rc.d psql start NN 3 5 stop NN 3 5 where NN is the start number i.e.: /etc/rc3.d/SNNpsql /etc/rc3.d/KNNpsql Cheers. Chacal, Inc.
Jan 19, 2006 Thread starter #4 delfy MIS Feb 8, 2005 96 JM thanks Chacalinc i am actually using mandrakeb but thanks for the information anyway Upvote 0 Downvote
Jan 19, 2006 #5 danomac IS-IT--Management Aug 2, 2002 731 AM I believe mandrake uses chkconfig as well. I know mandriva does. Upvote 0 Downvote