Most of the services like httpd, mysqld, crond, etc. are setup to start on boot when we install them. If we want to add new services to auto start on boot, we can use chkconfig utility. Below is example to auto start memcached service on boot.
$ sudo chkconfig memcached on
Above command will add memcached service to boot list.

Reference:

Submitted by ychaugule on