This User Guide is for troubleshooting the Apache web server, not an application server like Tomcat, JBoss, Ruby on Rails, or GlassFish. For information on troubleshooting sites using those application servers, see their specific User Guides - http://support.eapps.com/kb |
[root@eapps-example ~]# service httpd status httpd (pid 31947 28385 18159 16027 7433 7430) is running... [root@eapps-example ~]# |
[root@eapps-example ~]# service httpd status httpd is stopped [root@eapps-example ~]# |
[root@eapps-example ]# service httpd start Starting httpd: [ OK ] [root@eapps-example ]# |
[root@eapps-example ]# service httpd start Starting httpd: [FAILED] [root@eapps-example ]# |
[root@eapps-example ]# service httpd start Starting httpd: Warning: DocumentRoot [/home/webadmin/eapps-example.com/html] does not exist [FAILED] [root@eapps-example ]# |
[root@eapps-example ~]# cd /etc [root@eapps-example etc]# ll php.ini -rw-r--r-- 1 root root 45003 Dec 11 2007 php.ini [root@eapps-example etc]# cp php.ini{,.bck} [root@eapps-example etc]# vi php.ini |
; Allow the <? tag. Otherwise, only <?php and <script> tags are recognized. ; NOTE: Using short tags should be avoided when developing applications or ; libraries that are meant for redistribution, or deployment on PHP ; servers which are not under your control, because short tags may not ; be supported on the target server. For portable, redistributable code, ; be sure not to use short tags. |
short_open_tag = Off |
short_open_tag = On |
[Wed Aug 05 14:13:59 2009][error]server reached MaxClients setting, consider raising the MaxClients setting [Fri Aug 07 11:50:32 2009][error]server reached MaxClients setting, consider raising the MaxClients setting [Mon Jul 20 15:52:50 2009][error]server reached MaxClients setting, consider raising the MaxClients setting [Sat Jul 18 09:31:56 2009][error]server reached MaxClients setting, consider raising the MaxClients setting |
[root@eapps-example ~]# ps -ef | grep -c httpd 13 [root@eapps-example ~]# |