apache wont startup.

johnallen

Verified User
Joined
Sep 23, 2003
Messages
47
Location
minneapolis
The Error
----------------------------------------------------------------
Stopping httpd: [FAILED]
Starting httpd: Syntax error on line 214 of /etc/httpd/conf/httpd.conf:
Cannot load /etc/httpd/modules/mod_env.so into server: /etc/httpd/modules/mod_env.so: undefined symbol: apr_table_overlay
[FAILED]
-----------------------------------------------------------------

How do you recommend I fix this without hurting the control panel?
 
Hello,

Make sure you havn't installed any additional modules by accident (or perhaps were there before da was installed).

The brute force method to fix it:
Code:
rm -f /usr/lib/apache/*
cd /usr/local/directadmin/customapache
./build update
./build clean
./build all

Give that a try. Failing that, there might be something wrong in your /etc/httpd/conf/httpd.conf file on the line shown.

John
 
I had to run the following commands to get the reinstall to work.

rm -rf /usr/lib/apache/*
rm -rf /etc/httpd/*
 
Back
Top