PDA

View Full Version : Apache 2.2.10 install


bbartell
18th November 2008, 12:48 AM
Well, I'm stuck. I'm to the following step in the downloaded httpd-2.2.10 folder:

,/configure --enable-module=so
make
make install

All goes well until the end and I get:

/usr/bin/install -c -m 644 expat.h /usr/local/apache2/include
make[4]: Leaving directory `/home/bill/Download/httpd-2.2.10/srclib/apr-util/xml/expat/lib'
make[3]: Leaving directory `/home/bill/Download/httpd-2.2.10/srclib/apr-util/xml/expat'
/bin/sh /home/bill/Download/httpd-2.2.10/srclib/apr/libtool --mode=install /usr/bin/install -c -m 755 libaprutil-1.la /usr/local/apache2/lib
libtool: install: error: cannot install `libaprutil-1.la' to a directory not ending in /www/lib
make[2]: *** [install] Error 1
make[2]: Leaving directory `/home/bill/Download/httpd-2.2.10/srclib/apr-util'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory `/home/bill/Download/httpd-2.2.10/srclib'
make: *** [install-recursive] Error 1


Any help for a newbie? Thanks!!

leigh123linux
18th November 2008, 01:23 AM
Grab rpm's from koji

F9

http://koji.fedoraproject.org/koji/buildinfo?buildID=67433

F8

http://koji.fedoraproject.org/koji/buildinfo?buildID=67438

bbartell
18th November 2008, 01:51 AM

Thanks, I downloaded the manual, tools and fc9 rpms. I tried to install and got a "Dependency resolutions failed" with more details:
httpd = 2.2.9-1.fc9 is needed by package httpd-manual-2.2.9-1.fc9.i386
httpd-tools = 2.2.10-1.fc9 is needed by package httpd-2.2.10-1.fc9.i386 (/home/bill/Download/httpd-2.2.10-1.fc9.i386.rpm)
httpd = 2.2.9-1.fc9 is needed by package 1:mod_ssl-2.2.9-1.fc9.i386

More help available?

leigh123linux
18th November 2008, 02:01 AM
Try


su
wget http://koji.fedoraproject.org/packages/httpd/2.2.10/1.fc9/i386/httpd-2.2.10-1.fc9.i386.rpm
wget http://koji.fedoraproject.org/packages/httpd/2.2.10/1.fc9/i386/httpd-manual-2.2.10-1.fc9.i386.rpm
wget http://koji.fedoraproject.org/packages/httpd/2.2.10/1.fc9/i386/httpd-tools-2.2.10-1.fc9.i386.rpm
wget http://koji.fedoraproject.org/packages/httpd/2.2.10/1.fc9/i386/mod_ssl-2.2.10-1.fc9.i386.rpm
rpm -Uvh httpd-2.2.10-1.fc9.i386.rpm httpd-manual-2.2.10-1.fc9.i386.rpm httpd-tools-2.2.10-1.fc9.i386.rpm mod_ssl-2.2.10-1.fc9.i386.rpm

bbartell
18th November 2008, 04:07 AM
Still having a problem:

[root@localhost bill]# rpm -Uvh httpd-2.2.10-1.fc9.i386.rpm
error: Failed dependencies:
httpd-tools = 2.2.10-1.fc9 is needed by httpd-2.2.10-1.fc9.i386
httpd = 0:2.2.9-1.fc9 is needed by (installed) mod_ssl-2.2.9-1.fc9.i386
httpd = 2.2.9-1.fc9 is needed by (installed) httpd-manual-2.2.9-1.fc9.i386

leigh123linux
18th November 2008, 09:13 AM
Still having a problem:

[root@localhost bill]# rpm -Uvh httpd-2.2.10-1.fc9.i386.rpm
error: Failed dependencies:
httpd-tools = 2.2.10-1.fc9 is needed by httpd-2.2.10-1.fc9.i386
httpd = 0:2.2.9-1.fc9 is needed by (installed) mod_ssl-2.2.9-1.fc9.i386
httpd = 2.2.9-1.fc9 is needed by (installed) httpd-manual-2.2.9-1.fc9.i386


Install all 4 packages as a single transaction !


i.e


rpm -Uvh httpd-2.2.10-1.fc9.i386.rpm httpd-manual-2.2.10-1.fc9.i386.rpm httpd-tools-2.2.10-1.fc9.i386.rpm mod_ssl-2.2.10-1.fc9.i386.rpm


Follow my instructions in my previous post