Error while install directadmin

gokhanweb

Verified User
Joined
Oct 4, 2005
Messages
35
Location
Turkey / Kirsehir
hi,
i have a centos 6 64bit-Beta server (minimum install).

i read installation guide (http://www.directadmin.com/installguide.html)

what can i do?

Code:
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from mod_ssl.c:27:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from ssl_engine_config.c:29:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from ssl_engine_init.c:29:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from ssl_engine_kernel.c:31:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from ssl_engine_log.c:30:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from ssl_engine_dh.c:31:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from ssl_engine_mutex.c:31:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
make[3]: *** [mod_ssl.lo] Error 1
make[3]: *** Waiting for unfinished jobs....
In file included from /usr/include/krb5.h:8,
                 from /usr/include/openssl/kssl.h:72,
                 from /usr/include/openssl/ssl.h:165,
                 from ssl_toolkit_compat.h:33,
                 from ssl_private.h:60,
                 from ssl_engine_io.c:30:
/usr/include/krb5/krb5.h:2601:24: error: et/com_err.h: No such file or directory
make[3]: *** [ssl_engine_log.lo] Error 1
make[3]: *** [ssl_engine_config.lo] Error 1
make[3]: *** [ssl_engine_dh.lo] Error 1
make[3]: *** [ssl_engine_init.lo] Error 1
make[3]: *** [ssl_engine_mutex.lo] Error 1
make[3]: *** [ssl_engine_kernel.lo] Error 1
make[3]: *** [ssl_engine_io.lo] Error 1
make[3]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.2.19/modules/ssl'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.2.19/modules/ssl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.2.19/modules'
make: *** [all-recursive] Error 1

thanks.
 
my configure.apache file is:

Code:
#!/bin/sh
"./configure" \
        "--prefix=/etc/httpd" \
        "--exec-prefix=/etc/httpd" \
        "--bindir=/usr/bin" \
        "--sbindir=/usr/sbin" \
        "--sysconfdir=/etc/httpd/conf" \
        "--enable-so" \
        "--enable-dav" \
        "--enable-dav-fs" \
        "--enable-dav-lock" \
        "--enable-suexec" \
        "--enable-deflate" \
        "--enable-unique-id" \
        "--with-suexec-caller=apache" \
        "--with-suexec-docroot=/" \
        "--with-suexec-gidmin=100" \
        "--with-suexec-logfile=/var/log/httpd/suexec_log" \
        "--with-suexec-uidmin=100" \
        "--with-suexec-userdir=public_html" \
        "--with-suexec-bin=/usr/sbin/suexec" \
        "--with-included-apr" \
        "--with-pcre=/usr/local" \
        "--includedir=/usr/include/apache" \
        "--libexecdir=/usr/lib/apache" \
        "--datadir=/var/www" \
        "--localstatedir=/var" \
        "--enable-logio" \
        "--enable-ssl" \
        "--enable-rewrite" \
        "--enable-proxy" \
        "--enable-expires" \
        "--with-ssl=/usr" \
        "--enable-headers"
what can i do? can not find any solution.
 
Back
Top