Apache web server support special syntax checking. You can run syntax tests for configuration files only. Following two are important syntax checker option you can pass to apache binary program httpd (Red Hat/ Fedora Linux) or apache-perl (Debian Linux apache binary):
Executing the following command, that will detect syntax errors:
If you are using Debian Linux:
# /usr/sbin/apache-perl -t
Syntax OK
If you are using Red Hat Linux:
# /usr/sbin/httpd -t
Syntax OK
Where,
- -t : The program immediately exits after these syntax parsing with either a return code of 0 (i.e. Syntax OK message) or return code not equal to 0 (i.e. Syntax Error message).
Consider following example:
# /usr/sbin/apache-perl -t
Warning: DocumentRoot [/data/network/www/blogs] does not exist
Syntax OK
Replace it with -T option:
/usr/sbin/apache-perl -T
Syntax OK
The option -T is same as option -t but does not check the configured document roots (warning message disappeared).
Another example:
# /usr/sbin/apache-perl -t -S
Syntax error on line 1059 of /etc/apache-perl/httpd.conf:
Invalid command 'CustomLogl', perhaps mis-spelled or defined by a module not included in the server configuration
As you see error on line number 1059 need to be fixed. Use vi text editor:
# vi +1059 /etc/apache-perl/httpd.conf
After correction again retype command:
# /usr/sbin/apache-perl -t –S
Output:
VirtualHost configuration:
192.168.1.1:80 is a NameVirtualHost
default server cyberciti.biz (/etc/apache-perl/httpd.conf:1053)
port 80 namevhost cyberciti.biz (/etc/apache-perl/httpd.conf:1053)
port 80 namevhost apps.cyberciti.biz (/etc/apache-perl/httpd.conf:1062)
port 80 namevhost dl.cyberciti.biz (/etc/apache-perl/httpd.conf:1069)
port 80 namevhost blogs.cyberciti.biz (/etc/apache-perl/httpd.conf:1076) You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 0 comments… add one now }