How did you install apache and mysql?
If you have installed both using your package manager it should have already setup the appropriate services. Use
to check the status of the 2 services, and
Code:
chkconfig httpd --level 2345 on
chkconfig mysqld --level 2345 on
to enable them.
Regards