Tag: httpd
-
Check httpd.conf syntax in Apache Severs
Some times its hard to make changes to productions servers configuration. In apache you can check http.conf syntax before you restart or reload the service. # /usr/sbin/httpd -t
-
Set automatic httpd daemon start
This comand set executions permissions to the script and with chkconfig we create a Start link to the rc.d system. chmod 755 /etc/init.d/httpd ; chkconfig –add httpd /etc/init.d/httpd start