کد PHP:
First make sure port 80 is not used by any other services or application with netstat command :
netstat -tulpn | grep :80
If port 80 is bind to httpd, kill all process:
killall -9 httpd
Now start the httpd
/etc/init.d/httpd start
Also make sure you are root while starting the httpd