libexpat.so.0: cannot open shared object file: No such file or directory

HighFly

Verified User
Joined
Jan 15, 2008
Messages
30
Hi,

Today i've wanted to update one of our directadmin servers, via custombuild. When i run this command
Code:
./build versions|grep update

I've got this error:
Code:
/usr/sbin/httpd: error while loading shared libraries: libexpat.so.0: cannot open shared object file: No such file or directory
Apache  to 2.4.12 update is available.
ClamAV 0.98.5 to 0.98.6 update is available.
RoundCube webmail 1.0.5 to 1.1.0 update is available.
phpMyAdmin 4.3.8-all-languages to 4.3.9-all-languages update is available.
If you want to update all the available versions run: ./build update_versions

Notice there is no 'old' version number at Apache.
The server is provided with Debian 7.8 and was just upgraded with
Code:
aptitude update && aptitude upgrade -y

Don't know if my Debian upgrade have something to do with the error with Custombuild?

Currently all sites are still running.

Who can help me out on this?
 
Hi, Unihostbrasil,

Thanks for your comment. It did the trick, however i get this message:

Starting httpd: [Mon Feb 16 00:18:54.070246 2015] [so:warn] [pid 17088:tid 140332617836288] AH01574: module fcgid_module is already loaded, skipping


Something to worry about?
 
It's just a warning, your Apache config files are trying to load the fcgid_module twice.

Please check your /etc/httpd/conf/httpd.conf and /etc/httpd/conf/extra/httpd-phpmodules.conf for the following line:

Code:
LoadModule	fcgid_module		/usr/lib/apache/mod_fcgid.so

You just need it on the httpd-phpmodules.conf.
 
Back
Top