The 'chkconfig' utility provides a simple command-line tool for maintaining system services contained in the /etc/rc[0-6].d directory hierarchy. You can use this tool to tag services so that they are started when the server is rebooted. List all services: chkconfig --list Tag a service as 'off' chkconfig off When the server is rebooted, this service will not start Start a service chkconfig on When the server is rebooted, this service will start
|