Return-Path: Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 47000 invoked by uid 500); 26 Aug 2003 18:39:54 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 46923 invoked from network); 26 Aug 2003 18:39:53 -0000 Received: from unknown (HELO ComplusExch1.complusdata.hq) (12.42.32.217) by daedalus.apache.org with SMTP; 26 Aug 2003 18:39:53 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Tue, 26 Aug 2003 14:37:25 -0400 X-MIMEOLE: Produced By Microsoft Exchange V6.0.6249.0 Message-ID: <468E4BCF164C944E88DF9F70D15FFA75068632@complusexch1.complusdata.hq> content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [users@httpd] SOLVED -Errors with make and make install - urgent Thread-Index: AcNr9cf2CsTyD21QRCCxlzRTDDa43AAANLqQAAG6pWAAAMcBMA== From: "Denise Mangano" To: X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Subject: RE: [users@httpd] SOLVED -Errors with make and make install - urgent OK last note on this (promise)... Just wanted to put the answer out there in case anyone was following the thread and was curious of a resolution. I was under the assumption that I did not need the LoadModule statement since I compiled apache with mod_ssl. So either something did not work right when I config'd and compiled causing me to have to manually enter the info, or you have to do this either way. I added a LoadModule statement in the httpd.conf file: LoadModule ssl_module libexec/libssl.so I also had to manually configure the SSLCertificateFile, and SSLCertificateKeyFile directives to point to my cert and key. Thanks for you help :) Denise > -----Original Message----- > From: Denise Mangano=20 > Sent: Tuesday, August 26, 2003 2:18 PM > To: users@httpd.apache.org > Subject: RE: [users@httpd] Errors with make and make install - urgent >=20 >=20 > Ok this seemed to do the trick to get passed the errors, and=20 > I could make and install everything with no errors. The=20 > problem is to now get the mod_ssl to work. =20 >=20 > Then able to config mod_ssl with the following: > ./configure \ > --with-apache=3D../apache_1.3.28 > --with-ssl=3D../openssl-0.9.6b \=20 > --with-crt=3D/usr/share/ssl/certs/certif.crt \=20 --with-key=3D/usr/share/ssl/private/myKey.key >=20 >=20 > after that was completed the following command line=20 > configured apache with no errors: cd ../apache_1.3.28=20 > SSL_BASE=3D../openssl-0.9.6b \ ./configure \=20 > --prefix=3D/usr/local/apache \ --enable-module=3Dso \=20 > --enable-module=3Dssl \ --enable-shared=3Dssl \=20 > --disable-module=3Duserdir \ --disable-module=3Dautoindex \=20 > --server-uid=3Dwww \ --server-gid=3Dwww >=20 > Apache was able to start fine, but I still cannot access=20 > https://localhost. In the conf file I had to go in and add=20 > the paths to my cert and key files. When I run=20 > /usr/local/apache/bin/httpd -l mod_ssl is not listed. There=20 > is no LoadModule statement in the httpd.conf for mod_ssl, and=20 > the only *.so file that was copied over was libssl.so into=20 > the libexec directory. >=20 > Any suggestions? >=20 > Thanks. >=20 > > -----Original Message----- > > From: Denise Mangano > > Sent: Tuesday, August 26, 2003 1:28 PM > > To: users@httpd.apache.org > > Subject: RE: [users@httpd] Errors with make and make=20 > install - urgent > >=20 > >=20 > > I actually have the openssl-0.9.6b RPM installed. I just > > downloaded the source for the same version, and now I am=20 > > going to try configuring the source just to have access to=20 > > the binaries, so that I can (as John > > mentioned) indicate where the binaries are... > >=20 > > The only thing is when I extract the source it will be in > > /usr/local/src. When I configure mod_ssl I will indicate > > --with-ssl=3D../openssl So when I configure Apache, what=20 > would I have > > to include? Would it just be SSL_BASE=3D../openssl or would I=20 > > have to include the CFLAGS and LDFLAGS as John mentioned. > >=20 > > Thanks for the reply. > >=20 > > > -----Original Message----- > > > From: Gold, Samuel (Contractor) [mailto:GoldS@ncr.disa.mil] > > > Sent: Tuesday, August 26, 2003 12:50 PM > > > To: 'users@httpd.apache.org' > > > Subject: RE: [users@httpd] Errors with make and make > > install - urgent > > >=20 > > >=20 > > > I think you need to recompile apache and make sure you=20 > have OpenSSL. > > >=20 > > > =20 > > > Thanks, > > > Sam Gold > > >=20 > > >=20 > > > -----Original Message----- > > > From: Denise Mangano [mailto:Denisem@complusdata.com] > > > Sent: Tuesday, August 26, 2003 12:49 PM > > > To: users@httpd.apache.org > > > Subject: RE: [users@httpd] Errors with make and make > > install - urgent > > >=20 > > >=20 > > > I'm sorry to bog the list down with this, but I'm really=20 > hoping for=20 > > > some help on this one. I am back to trying to compile=20 > apache with=20 > > > SSL. I didn't notice this before, but when I run the=20 > configure with=20 > > > --enable-module=3Dssl I get the following error: Creating Makefile = > > > Creating > > Configuration.apaci in src > > > Error: Cannot find SSL header files in any of the following dirs > > > Error: . /usr/include /usr/include/ssl /usr/local/include > > > /usr/local/include/ssl > > >=20 > > > Any suggestions? > > >=20 > > > I can configure Apache alone, but then I'm not sure how=20 > to "add in"=20 > > > mod_ssl. It seems that all the documentation explains how to=20 > > > compile Apache with mod_ssl, but now how to add mod_ssl=20 > on after the=20 > > > fact. > > >=20 > > > Thanks. > > >=20 > > > > -----Original Message----- > > > > From: Denise Mangano > > > > Sent: Tuesday, August 26, 2003 11:53 AM > > > > To: users@httpd.apache.org > > > > Subject: RE: [users@httpd] Errors with make and make > > > install - urgent > > > >=20 > > > >=20 > > > > Joshua - it turned out that I needed the glibc-kernheaders RPM > > > > installed. This package contained the missing > > > > "/usr/include/bits/local_lim.h:36:26: linux/limits.h:" > > > >=20 > > > >=20 > > > > I am still running into some problems though... When I try the > > > > apache 1.3.28 RPM install I get failure due to package=20 > > dependencies, > > > > but the packages are in fact installed... I'm in a serious bind > > > > here... I need to get > > > > Apache+mod_ssl/Tomcat/mod_jk up and running asap. Any > > suggestions? > > > >=20 > > > > Thanks. > > > >=20 > > > > > -----Original Message----- > > > > > From: Joshua Slive [mailto:joshua@slive.ca] > > > > > Sent: Tuesday, August 26, 2003 10:43 AM > > > > > To: users@httpd.apache.org > > > > > Subject: Re: [users@httpd] Errors with make and make > > > > install - urgent > > > > >=20 > > > > >=20 > > > > >=20 > > > > > On Tue, 26 Aug 2003, Denise Mangano wrote: > > > > > > =3D=3D=3D> src/regex > > > > > > sh ./mkh -p regcomp.c >regcomp.ih > > > > > > gcc -I. -I../os/unix -I../include -DLINUX=3D22=20 > -DUSE_HSREGEX > > > > > > -DUSE_EXPAT -I../lib/expat-lite `../apaci` > > > -DPOSIX_MISTAKE -c -o > > > > > > regcomp.o regcomp.c > > > > > > In file included from /usr/include/bits/posix1_lim.h:126, > > > > > > from /usr/include/limits.h:144, > > > > > > from=20 > > > > > >=20 > /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/limits.h:130, > > > > > > from=20 > > > > > >=20 > /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/syslimits.h:7, > > > > > > from > > > > > > /usr/lib/gcc-lib/i386-redhat-linux/2.96/include/limits.h:11, > > > > > > from regcomp.c:5: > > > > > > /usr/include/bits/local_lim.h:36:26: linux/limits.h: No=20 > > > > > such file or > > > > > > directory > > > > >=20 > > > > > This looks like a faulty install of gcc to me, although > > > I'm not an > > > > > expert. > > > > >=20 > > > > > Joshua. > > > > >=20 > > > > >=20 > > > >=20 > > >=20 > >=20 > --------------------------------------------------------------------- > > > > > The official User-To-User support forum of the Apache > > HTTP Server > > > > > Project. See > > > for more > > > > > info. To unsubscribe, e-mail:=20 > users-unsubscribe@httpd.apache.org > > > > > " from the digest:=20 > > users-digest-unsubscribe@httpd.apache.org > > > > > For additional commands, e-mail: users-help@httpd.apache.org > > > > >=20 > > > > >=20 > > > >=20 > > > >=20 > > >=20 > >=20 > --------------------------------------------------------------------- > > > > The official User-To-User support forum of the Apache=20 > HTTP Server > > > > Project. See =20 > > for more > > > > info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > > > " from the digest:=20 > users-digest-unsubscribe@httpd.apache.org > > > > For additional commands, e-mail: users-help@httpd.apache.org > > > >=20 > > > >=20 > > >=20 > > >=20 > >=20 > --------------------------------------------------------------------- > > > The official User-To-User support forum of the Apache HTTP Server=20 > > > Project. See =20 > for more=20 > > > info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > > " from the digest: users-digest-unsubscribe@httpd.apache.org > > > For additional commands, e-mail: users-help@httpd.apache.org > > >=20 > > >=20 > > >=20 > > >=20 > > >=20 > >=20 > --------------------------------------------------------------------- > > > The official User-To-User support forum of the Apache HTTP Server=20 > > > Project. See =20 > for more=20 > > > info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > > " from the digest: users-digest-unsubscribe@httpd.apache.org > > > For additional commands, e-mail: users-help@httpd.apache.org > > >=20 > > >=20 > >=20 > >=20 > --------------------------------------------------------------------- > > The official User-To-User support forum of the Apache HTTP > > Server Project. See=20 > > for more info.=20 > > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > " from the digest: users-digest-unsubscribe@httpd.apache.org > > For additional commands, e-mail: users-help@httpd.apache.org > >=20 > >=20 >=20 > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP=20 > Server Project. See=20 > for more info.=20 > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > " from the digest: users-digest-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org >=20 >=20 --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org