PDA

View Full Version : Fedora Apache Problems



quackweb
06-30-2004, 09:12 PM
Hello,

I have tried to install DA on Fedora Core 2 and everything works fine until....

In file included from /usr/include/openssl/kssl.h:72,
from /usr/include/openssl/ssl.h:179,
from mod_ssl.h:116,
from mod_ssl.c:65:
/usr/include/krb5.h:2606:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:2866:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:2909:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:2980:24: et/com_err.h: No such file or directory
/usr/include/krb5.h:3003:24: et/com_err.h: No such file or directory
make[4]: *** [mod_ssl.lo] Error 1
make[3]: *** [all] Error 1
make[2]: *** [subdirs] Error 1
make[2]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.31/src'
make[1]: *** [build-std] Error 2
make[1]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.31'
make: *** [build] Error 2

*** The make has failed, do you want to try to make again? (y,n):
When I select y, it just repeats it over. When I log into DA, it shows the Apache service as stopped. Any suggestions?

quackweb
06-30-2004, 09:28 PM
Exim Service also down on the server =(

toml
07-01-2004, 06:57 AM
Make sure krb5-devel is installed and what sort of error messages are in /var/log/exim/mainlog?

quackweb
07-01-2004, 08:12 PM
Everything was fine there, I did manage to get Apache up and running but Exim is still down. I got Apache up and running be rebuilding all the files. Does anyone know how to rebuild Exim in Fedora? Thanks in advance!

DirectAdmin Support
07-02-2004, 12:13 PM
Re: apache and fedora:
http://help.directadmin.com/item.php?id=19
http://help.directadmin.com/item.php?id=5

If you're using fedora 2, you might need to use a different exim rpm:
http://files.directadmin.com/services/fedora_2/da_exim-4.34-1.i386.rpm

John

quackweb
07-02-2004, 06:46 PM
I try to install that RPM and get this error message:


[root@theneptuneserver root]# rpm -ivh da_exim-4.34-1.i386.rpm
Preparing... ########################################### [100%]
file /etc/aliases from install of da_exim-4.34-1 conflicts with file from package setup-2.5.33-1

outpernet
07-03-2004, 05:34 PM
on RH im building apafche 1.3.1. It builed ok, but when i submit this build "./build apache_mod_ssl" this error show up


<=== src/modules/ssl
===> src/modules/frontpage
/bin/sh: line 1: cd: frontpage: No such file or directory
make[3]: *** [all] Error 1
make[2]: *** [subdirs] Error 1
make[2]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.31/src'
make[1]: *** [build-std] Error 2
make[1]: Leaving directory `/usr/local/directadmin/customapache/apache_1.3.31'
make: *** [build] Error 2

*** The make has failed, do you want to try to make again? (y,n):

outpernet
07-03-2004, 05:38 PM
ok. i fond this:

http://www.directadmin.com/forum/showthread.php?s=&threadid=3642&highlight=build+Error

ProWebUK
07-04-2004, 09:29 AM
Originally posted by DirectAdmin Support
Re: apache and fedora:
http://help.directadmin.com/item.php?id=19
http://help.directadmin.com/item.php?id=5

If you're using fedora 2, you might need to use a different exim rpm:
http://files.directadmin.com/services/fedora_2/da_exim-4.34-1.i386.rpm

John

rpm -e da_exim

Then retry it.

Chris

DirectAdmin Support
07-04-2004, 02:47 PM
Originally posted by quackweb
I try to install that RPM and get this error message:
quote:
--------------------------------------------------------------------------------

[root@theneptuneserver root]# rpm -ivh da_exim-4.34-1.i386.rpm
Preparing... ########################################### [100%]
file /etc/aliases from install of da_exim-4.34-1 conflicts with file from package setup-2.5.33-1

-------------------------------------------------------------------------------


Try:

rpm -ivh --nodeps da_exim-4.34-1.i386.rpm

John

quackweb
07-05-2004, 11:26 AM
Same problem again:



[root@theneptuneserver root]# rpm -ivh --nodeps da_exim-4.34-1.i386.rpm
Preparing... ########################################### [100%]
file /etc/aliases from install of da_exim-4.34-1 conflicts with file fro
m package setup-2.5.33-1

DirectAdmin Support
07-06-2004, 11:02 AM
Hmm,

Ok, then try --force:

rpm -ivh --force da_exim-4.34-1.i386.rpm

or failing that:

rpm -ivh --nodeps --force da_exim-4.34-1.i386.rpm

Let us know which one works.

John

quackweb
07-06-2004, 01:12 PM
John,

The first one worked but now when I go to build the new file I get this new error message:



[root@theneptuneserver root]# rpm -ivh da_exim-4.34-1.i386.rpm
Preparing... ########################################### [100%]
package da_exim-4.34-1 is already installed
file /etc/aliases from install of da_exim-4.34-1 conflicts with file fro
m package setup-2.5.33-1

DirectAdmin Support
07-08-2004, 12:09 PM
Hello,

Looks like it's already on. Type:

service exim restart

to make sure it's running, then:

telnet localhost 25

and it should show you the exim version number... or just type:

exim -bV

John

ProWebUK
07-09-2004, 06:12 AM
You are upgrading exim, not installing it....

rpm -Uvh <rpmname>

Chris