httpd not work ! Help me !

nhthai

Verified User
Joined
Oct 2, 2009
Messages
11
httpd not work after I rebooted my server .
error message :
Code:
[root@server ~]# service httpd start
Starting httpd: /usr/sbin/httpd: error while loading shared libraries: libaprutil-1.so.0: failed to map segment from shared object: Permission denied

Pls help me !
 
run:

Code:
ldd /usr/sbin/httpd
to see where apache is looking for the missing library (libaprutil-1.so).

then find the library (or install it if required) and link it to the path it was looking for above:

Code:
ln -s /usr/lib/libaprutil-1.so.0 <path apache wants>
 
Back
Top