HTTP Restart Fails

tygersclaw

Verified User
Joined
Nov 6, 2006
Messages
24
I just ran Custom Build on my server and when I went to restart using /sbin/service httpd restart I got a error/fail

So I tried in DA as I cannot now get into SSH, and got the following error....

An error has occurred

Details

/sbin/service httpd start 2>&1

In the Apache Error Logs, I found this entry...

[Sun Mar 08 06:44:04 2009] [notice] Apache/2.2.11 (Unix) mod_ssl/2.2.11 OpenSSL/0.9.8b DAV/2 PHP/5.2.9 configured -- resuming normal operations
[Sun Mar 08 07:00:02 2009] [notice] caught SIGTERM, shutting down

More info

[root@server1 custombuild]# /sbin/service httpd restart
Stopping httpd: [FAILED]
Starting httpd: httpd: Syntax error on line 19 of /etc/httpd/conf/httpd.conf: Cannot load /usr/lib/apache/libperl.so into server: /usr/lib/apache/libperl.so: undefined symbol: ap_table_merge



Any ideas?? I also submitted a support ticket to my box provider as I did have a previous issue today accessing via SSH due to firewall issues which I hope are resolved so I can once again access via SSH
 
Last edited:
probmal with httpd

httpd Process is stopped



I have this eroor


An error has occurred

Details

/sbin/service httpd start 2>&1


please help me.........:confused::confused::confused::confused::confused:
 
httpd Process is stopped



I have this eroor


An error has occurred

Details

/sbin/service httpd start 2>&1


please help me.........:confused::confused::confused::confused::confused:


One kill all httpd process by

killall httpd

then restart sevice again if kiall don't work you need to recheck which httpd process still worked. by below command

ps aux | grep httpd

Then

kill -9 [process id]

Then

service httpd restard

Hope this help
 
try on root:

Code:
killall -w httpd
and to make sure that "apache" does'nt on
Code:
service httpd stop
after that.

Code:
service httpd start
 
Back
Top