Problem scenario
You have to manually start Apache web server every time you do reboot the server. You want the Apache web service to start automatically.
Solution
1. Edit /etc/crontab. Add the lowest line of these two (the line above is for reference):
# * * * * * user-name command to be executed
@reboot root apachectl start
2.
…