Apache gives error

daride

Verified User
Joined
Oct 6, 2005
Messages
19
Hi there, on the installation of apache in directadmin this showed up:

Configuring mod_ssl-2.8.24-1.3.33...
Configuring mod_ssl/2.8.24 for Apache/1.3.33
+ Apache location: ../apache_1.3.33 (Version 1.3.33)
+ OpenSSL location: /usr
+ Auxiliary patch tool: ./etc/patch/patch (local)
./configure:Error: Building of 'patch' tool failed:
-------------------------------------------------
checking for rename... (cached) yes
checking for pathconf... (cached) yes
checking for strerror... (cached) yes
checking for long file names... (cached) yes
./configure: line 1421: cmp: command not found
updating cache ./config.cache
creating ./config.status
creating Makefile
creating config.h
./configure: line 435: make: command not found
-------------------------------------------------
Hint: Either try to build 'patch' under etc/patch/
Hint: manually and re-run this 'configure' script
Hint: or provide us the path to your vendor 'patch'
Hint: program via the --with-patch=FILE option (but
Hint: expect perhaps failures when applying patches!)

*** There was an error while trying to configure apache+mod_ssl. Check the configure.apache_ssl file


Afterwards i also tryd to manualy build the file with this

Code:
[root@serv-3-11-132 customapache]# cd /usr/local/directadmin/customapache
[root@serv-3-11-132 customapache]# ./build all

Code:
GCC + GCC++ installed:

[root@serv-3-11-132 customapache]# rpm -q gcc
gcc-3.2.2-5
[root@serv-3-11-132 customapache]# rpm -q gcc-c++
gcc-c++-3.2.2-5

Can somewone help me?

*Edit: Notice, I'm running redhat 9*
 
Last edited:
If this error occurred during either an original install or during an upgrade through customapache you should probably ask DA support.

Jeff
 
Already mailed them like twice, chat was offline like all day...

So i'm asking it here

BTW When i try to startup apache via putty it shows up this:

Code:
[root@server customapache]# /etc/init.d/httpd start
Starting httpd: /usr/bin/find: /usr/lib/apache: No such file or directory
Syntax error on line 24 of /etc/httpd/conf/httpd.conf:
Cannot load /etc/httpd/modules/mod_vhost_alias.so into server: /etc/httpd/modules/mod_vhost_alias.so: cannot open shared object file: No such file or directory
                                                           [FAILED]
[root@server customapache]#
 
Hello,
./configure: line 435: make: command not found
You appear to be missing the make command. Try
Code:
up2date -u make
Then run "./build all" again. That should install the correct httpd boot script once apache is compiled.

John
 
Back
Top