Configure your system to start Services at boot time ? – LINUX
July 29th, 2009
1 comment
Easy and fast, using chkconfig linux command.
To configure your system to start Apache at boot time:
chkconfig --levels 235 httpd on
for manual start apache:
/etc/init.d/httpd start
create the system startup links for Proftpd and start it:
chkconfig --levels 235 proftpd on
/etc/init.d/proftpd start
Chkconfig provides a ...








