Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 12513 invoked from network); 14 Apr 2005 19:52:15 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 14 Apr 2005 19:52:15 -0000 Received: (qmail 85643 invoked by uid 500); 14 Apr 2005 19:51:48 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 85627 invoked by uid 500); 14 Apr 2005 19:51:48 -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 85611 invoked by uid 99); 14 Apr 2005 19:51:47 -0000 X-ASF-Spam-Status: No, hits=0.1 required=10.0 tests=NORMAL_HTTP_TO_IP X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from outmail.stratech.com (HELO rduex02.corp.stratech.com) (216.26.242.2) by apache.org (qpsmtpd/0.28) with ESMTP; Thu, 14 Apr 2005 12:51:44 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Thu, 14 Apr 2005 15:51:43 -0400 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [users@httpd] Apache install thread-index: AcVBJV++/nAsqse5RqqJiXxL51jiOAABC3fA From: "Plantier, Spencer" To: X-Virus-Checked: Checked Subject: RE: [users@httpd] Apache install X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N In ssl.conf I have: # General setup for the virtual host DocumentRoot "/home/www" ServerName 172.30.16.12:443 ServerAdmin spencer.plantier@stratech.com ErrorLog /usr/local/apache2/logs/error_log TransferLog /usr/local/apache2/logs/access_log # SSL Engine Switch: # Enable/Disable SSL for this virtual host. SSLEngine on # SSL Cipher Suite: # List the ciphers that the client is permitted to negotiate. # See the mod_ssl documentation for a complete list. SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL # Server Certificate: # Point SSLCertificateFile at a PEM encoded certificate. If # the certificate is encrypted, then you will be prompted for a # pass phrase. Note that a kill -HUP will prompt again. Keep # in mind that if you have both an RSA and a DSA certificate you # can configure both in parallel (to also allow the use of DSA # ciphers, etc.) SSLCertificateFile /home/ssl/localhost.cert #SSLCertificateFile /usr/local/apache2/conf/ssl.crt/server-dsa.crt # Server Private Key: # If the key is not combined with the certificate, use this # directive to point at the key file. Keep in mind that if # you've both a RSA and a DSA private key you can configure # both in parallel (to also allow the use of DSA ciphers, etc.) SSLCertificateKeyFile //home/ssl/localhost.key.unsecure #SSLCertificateKeyFile /usr/local/apache2/conf/ssl.key/server-dsa.key # Server Certificate Chain: # Point SSLCertificateChainFile at a file containing the # concatenation of PEM encoded CA certificates which form the # certificate chain for the server certificate. Alternatively # the referenced file can be the same as SSLCertificateFile # when the CA certificates are directly appended to the server # certificate for convinience. #SSLCertificateChainFile /usr/local/apache2/conf/ssl.crt/ca.crt # Certificate Authority (CA): # Set the CA certificate verification path where to find CA # certificates for client authentication or alternatively one # huge file containing all of them (file must be PEM encoded) # Note: Inside SSLCACertificatePath you need hash symlinks # to point to the certificate files. Use the provided # Makefile to update the hash symlinks after changes. #SSLCACertificatePath /usr/local/apache2/conf/ssl.crt #SSLCACertificateFile /usr/local/apache2/conf/ssl.crt/ca-bundle.crt # Certificate Revocation Lists (CRL): # Set the CA revocation path where to find CA CRLs for client # authentication or alternatively one huge file containing all # of them (file must be PEM encoded) # Note: Inside SSLCARevocationPath you need hash symlinks # to point to the certificate files. Use the provided # Makefile to update the hash symlinks after changes. #SSLCARevocationPath /usr/local/apache2/conf/ssl.crl #SSLCARevocationFile /usr/local/apache2/conf/ssl.crl/ca-bundle.crl # Client Authentication (Type): # Client certificate verification type and depth. Types are # none, optional, require and optional_no_ca. Depth is a # number which specifies how deeply to verify the certificate # issuer chain before deciding the certificate is not valid. #SSLVerifyClient require #SSLVerifyDepth 10 # Access Control: # With SSLRequire you can do per-directory access control based # on arbitrary complex boolean expressions containing server # variable checks and other lookup directives. The syntax is a # mixture between C and Perl. See the mod_ssl documentation # for more details. # #SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \ # and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \ # and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \ # and %{TIME_WDAY} >=3D 1 and %{TIME_WDAY} <=3D 5 \ # and %{TIME_HOUR} >=3D 8 and %{TIME_HOUR} <=3D 20 ) \ # or %{REMOTE_ADDR} =3D~ m/^192\.76\.162\.[0-9]+$/ # # SSL Engine Options: # Set various options for the SSL engine. # o FakeBasicAuth: # Translate the client X.509 into a Basic Authorisation. This means that # the standard Auth/DBMAuth methods can be used for access control. The # user name is the `one line' version of the client's X.509 certificate. # Note that no password is obtained from the user. Every entry in the user # file needs this password: `xxj31ZMTZzkVA'. # o ExportCertData: # This exports two additional environment variables: SSL_CLIENT_CERT and # SSL_SERVER_CERT. These contain the PEM-encoded certificates of the # server (always existing) and the client (only existing when client # authentication is used). This can be used to import the certificates # into CGI scripts. # o StdEnvVars: # This exports the standard SSL/TLS related `SSL_*' environment variables. # Per default this exportation is switched off for performance reasons, # because the extraction step is an expensive operation and is usually # useless for serving static content. So one usually enables the # exportation for CGI and SSI requests only. # o CompatEnvVars: # This exports obsolete environment variables for backward compatibility # to Apache-SSL 1.x, mod_ssl 2.0.x, Sioux 1.0 and Stronghold 2.x. Use this # to provide compatibility to existing CGI scripts. # o StrictRequire: # This denies access when "SSLRequireSSL" or "SSLRequire" applied even # under a "Satisfy any" situation, i.e. when it applies access is denied # and no other module can change it. # o OptRenegotiate: # This enables optimized SSL connection renegotiation handling when SSL # directives are used in per-directory context.=20 #SSLOptions +FakeBasicAuth +ExportCertData +CompatEnvVars +StrictRequire SSLOptions +StdEnvVars SSLOptions +StdEnvVars # SSL Protocol Adjustments: # The safe and default but still SSL/TLS standard compliant shutdown # approach is that mod_ssl sends the close notify alert but doesn't wait for # the close notify alert from client. When you need a different shutdown # approach you can use one of the following variables: # o ssl-unclean-shutdown: # This forces an unclean shutdown when the connection is closed, i.e. no # SSL close notify alert is send or allowed to received. This violates # the SSL/TLS standard but is needed for some brain-dead browsers. Use # this when you receive I/O errors because of the standard approach where # mod_ssl sends the close notify alert. # o ssl-accurate-shutdown: # This forces an accurate shutdown when the connection is closed, i.e. a # SSL close notify alert is send and mod_ssl waits for the close notify # alert of the client. This is 100% SSL/TLS standard compliant, but in # practice often causes hanging connections with brain-dead browsers. Use # this only for browsers where you know that their SSL implementation # works correctly.=20 # Notice: Most problems of broken clients are also related to the HTTP # keep-alive facility, so you usually additionally want to disable # keep-alive for those clients, too. Use variable "nokeepalive" for this. # Similarly, one has to force some clients to use HTTP/1.0 to workaround # their broken HTTP/1.1 implementation. Use variables "downgrade-1.0" and # "force-response-1.0" for this. SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 # Per-Server Logging: # The home of a custom SSL log file. Use this when you want a # compact non-error SSL logfile on a virtual host basis. CustomLog /usr/local/apache2/logs/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" =20 =20 And in my httpd.conf I have: ### Section 3: Virtual Hosts # # VirtualHost: If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration. # # Use name-based virtual hosting. # #NameVirtualHost *:80 # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for requests without a known # server name. # # # ServerAdmin spencer.plantier@stratech.com # DocumentRoot /home/www/spencer.plantier@stratech.com # ServerName 172.30.16.12:443 # ErrorLog logs/dummy-host.example.com-error_log # CustomLog logs/dummy-host.example.com-access_log common # And I changed the listen to listen 443 on httpd.conf and I get this error: # ./apachectl startssl (125)Address already in use: make_sock: could not bind to address [::]:443 no listening sockets available, shutting down Unable to open logs I have to be close.=20 Thanks, =20 =20 Spencer -----Original Message----- From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu]=20 Sent: Thursday, April 14, 2005 3:06 PM To: users@httpd.apache.org Subject: RE: [users@httpd] Apache install So now you have static modules. Just note, this is a matter of choice, you can go with either static or dynamic. In the future, it would be easier to help if you mentioned things like a completely new set of configure options in Apache. Obviously, you can remove all of the LoadModule statements for this list of modules. =20 If you're getting 'connection refused' from the https URL, then you don't have port 443 open. That's the default port for HTTPS, and somewhere in Apache's config you'll have to tell it to open that port. This is commonly done with a VirtualHost; the httpd.conf that Apache created for you with this set of configure options should include an example. On Thu, 14 Apr 2005, Plantier, Spencer wrote: > I reinstalled openssl and apache. When I do a httpd -l, I get: >=20 > core.c > mod_access.c > mod_auth.c > mod_auth_digest.c > mod_include.c > mod_deflate.c > mod_log_config.c > mod_env.c > mod_headers.c > mod_setenvif.c > mod_ssl.c > prefork.c > http_core.c > mod_mime.c > mod_status.c > mod_autoindex.c > mod_asis.c > mod_cgi.c > mod_negotiation.c > mod_dir.c > mod_imap.c > mod_actions.c > mod_userdir.c > mod_alias.c > mod_rewrite.c > mod_so.c >=20 > Is this any better.=20 >=20 >=20 > Thanks, > =20 > =20 > Spencer >=20 > -----Original Message----- > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > Sent: Thursday, April 14, 2005 12:05 PM > To: users@httpd.apache.org > Subject: RE: [users@httpd] Apache install >=20 > Um, you didn't delete _both_ of them, did you? That puts you back=20 > where you started.... >=20 > On Thu, 14 Apr 2005, Plantier, Spencer wrote: >=20 > > I deleted the modules in the httpd.conf. There are no more errors=20 > > but now when go to open the page https://172.30.16.12 it says=20 > > connection refused. > >=20 > >=20 > > Thanks, > > =20 > > =20 > > Spencer > >=20 > > -----Original Message----- > > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > > Sent: Thursday, April 14, 2005 11:20 AM > > To: users@httpd.apache.org > > Subject: RE: [users@httpd] Apache install > >=20 > > Or did you leave _both_ LoadModule statements in the conf file?! > >=20 > > On Thu, 14 Apr 2005, Craig Dunigan wrote: > >=20 > > > Hmm. I could have sworn mod_ssl is a DSO by default. Of course,=20 > > > you can just remove the LoadModule line, like Rambo said, and see=20 > > > what > > happens. > > > But this isn't what I would have expected. Are you sure you=20 > > > didn't change the ./configure options, or do the two compiles=20 > > > under different > >=20 > > > environments, or something like that? Does 'httpd -l' now show=20 > > > you that you have a static mod_ssl? > > >=20 > > > On Thu, 14 Apr 2005, Plantier, Spencer wrote: > > >=20 > > > > I have recompiled openssl and apache and now I get the=20 > > > > following > > error: > > > > Syntax error on line 231 of /usr/local/apache2/conf/httpd.conf: > > > > module ssl_module is built-in and can't be loaded # > > > >=20 > > > >=20 > > > >=20 > > > > Thanks, > > > > =20 > > > > =20 > > > > Spencer > > > >=20 > > > > -----Original Message----- > > > > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > > > > Sent: Wednesday, April 13, 2005 6:37 PM > > > > To: users@httpd.apache.org > > > > Subject: Re: [users@httpd] Apache install > > > >=20 > > > > I've never found it necessary to use -fPIC, and I've built=20 > > > > OpenSSL > > on > > > > several Solaris boxes. Again, I'm no Solaris expert, and you=20 > > > > may > > have a > > > > really good reason for wanting to use that. But, in my=20 > > > > experience, configure handles what compiler options to use=20 > > > > without >=20 > > > > needing much input from me. Then again, I use only GNU tools=20 > > > > for this. Solaris tools may vary substantially, I couldn't say. > > > >=20 > > > > With GNU make, './config; make; make install' has always been > > sufficient > > > > to give me an OpenSSL with shared libraries in /usr/local/lib on > > > > Solaris, that Apache can use quite nicely when building mod_ssl. > > > >=20 > > > > On Wed, 13 Apr 2005, Plantier, Spencer wrote: > > > >=20 > > > > > So I compile openssl with just fPIC right Spencer > > > > > Plantier------------------------- Sent from my BlackBerry=20 > > > > > Wireless > >=20 > > > > > Handheld > > > > >=20 > > > > >=20 > > > > > -----Original Message----- > > > > > From: Craig Dunigan > > > > > To: users@httpd.apache.org > > > > > Sent: Wed Apr 13 18:00:30 2005 > > > > > Subject: RE: [users@httpd] Apache install > > > > >=20 > > > > > No! Leave it exactly as it was. What you are doing with=20 > > > > > those > > lines > > > > > is telling Apache to build mod_ssl (--enable-ssl), and where=20 > > > > > to > > find > > > > > the ssl libraries it should use when building mod_ssl > > > > (--with-ssl=3D/usr/local). > > > > > By doing 'make install' with OpenSSL, you create those ssl > > libraries, > > > > > then you tell Apache to use them for mod_ssl. > > > > >=20 > > > > > I think you may have had some bad instructions the first time=20 > > > > > when > > you > > > >=20 > > > > > used 'make build-shared'. It sounded kind of strange to me,=20 > > > > > but > > hey, > > > > > I don't know everything, you may have had a really good reason > > > > > for > >=20 > > > > > doing it that way. The way I described above is a pretty=20 > > > > > standard > >=20 > > > > > method for doing this. > > > > >=20 > > > > > On Wed, 13 Apr 2005, Plantier, Spencer wrote: > > > > >=20 > > > > > > So do I take out these two lines when I build apache? > > > > > > --enable-ssl \ > > > > > > > --with-ssl=3D/usr/local \ > > > > > >=20 > > > > > >=20 > > > > > > Thanks > > > > > >=20 > > > > > > -----Original Message----- > > > > > > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > > > > > > Sent: Wednesday, April 13, 2005 5:49 PM > > > > > > To: users@httpd.apache.org > > > > > > Subject: RE: [users@httpd] Apache install > > > > > >=20 > > > > > > Did you have a special reason for building OpenSSL with=20 > > > > > > 'make build-shared' (I assumed you did)? As far as I can=20 > > > > > > tell, that > > seems > > > >=20 > > > > > > to be the root of the problem. If you don't have a reason,=20 > > > > > > then > > I'd > > > >=20 > > > > > > suggest going back to the OpenSSL source, doing 'make' and=20 > > > > > > 'make > >=20 > > > > > > install,' (the default configure options will put the libs=20 > > > > > > in /usr/local/lib for you, with the appropriate linking)=20 > > > > > > then recompiling Apache with the same configure options. =20 > > > > > > Then again, > > I > > > > > > really don't understand the purpose of 'build-shared' and=20 > > > > > > moving > > the > > > >=20 > > > > > > resulting so files, so I may be missing something. > > > > > >=20 > > > > > > On Wed, 13 Apr 2005, Plantier, Spencer wrote: > > > > > >=20 > > > > > > > /configure \ > > > > > > > --prefix=3D/usr/local/apache2 \ > > > > > > > --enable-so \ > > > > > > > --enable-auth-digest \ > > > > > > > --enable-rewrite \ > > > > > > > --enable-setenvif \ > > > > > > > --enable-mime \ > > > > > > > --enable-deflate \ > > > > > > > --enable-ssl \ > > > > > > > --with-ssl=3D/usr/local \ > > > > > > > --enable-headers > > > > > > >=20 > > > > > > > -----Original Message----- > > > > > > > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > > > > > > > Sent: Wednesday, April 13, 2005 4:42 PM > > > > > > > To: users@httpd.apache.org > > > > > > > Subject: RE: [users@httpd] Apache install > > > > > > >=20 > > > > > > > In the meantime, I did a little looking myself. There is=20 > > > > > > > an >=20 > > > > > > > equivalent, but it's entirely inappropriate in this case,=20 > > > > > > > and > > so > > > > > > > dangerous to the entire system that I won't even tell you=20 > > > > > > > it's > >=20 > > > > > > > name here, lest you be tempted. You really should work=20 > > > > > > > out > > what > > > > > > > went wrong > > > > > >=20 > > > > > > > with the build(s), instead. On with that, then. What=20 > > > > > > > were > > the > > > > > > > configure options for the Apache build? > > > > > > >=20 > > > > > > > On Wed, 13 Apr 2005, Plantier, Spencer wrote: > > > > > > >=20 > > > > > > > > I don't find ldconfig on my solaris 9 box.=20 > > > > > > > >=20 > > > > > > > > -----Original Message----- > > > > > > > > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > > > > > > > > Sent: Wednesday, April 13, 2005 12:12 PM > > > > > > > > To: users@httpd.apache.org > > > > > > > > Subject: RE: [users@httpd] Apache install > > > > > > > >=20 > > > > > > > > "man ldconfig" ? ;-) > > > > > > > >=20 > > > > > > > > Seriously, I couldn't help you there; I'm a Linux guy > only. > >=20 > > > > > > > > Maybe someone else can direct you, or even tell you for=20 > > > > > > > > sure > >=20 > > > > > > > > whether I'm on the right track with Solaris. I can't=20 > > > > > > > > even >=20 > > > > > > > > _find_ ldconfig on my > > > > > >=20 > > > > > > > > Solaris hosts, and I'm not sure what the Solaris=20 > > > > > > > > equivalent would > > > > > > be. > > > > > > > > But I do know that you need to run it on Linux if you're > > moving > > > > > > > > shared > > > > > > >=20 > > > > > > > > objects around like that, and I assume the situation is > > similar > > > > > > > > for other Unix systems. > > > > > > > >=20 > > > > > > > > On Wed, 13 Apr 2005, Plantier, Spencer wrote: > > > > > > > >=20 > > > > > > > > > =20 > > > > > > > > > I am running Solaris 9. I tried running ldconfig but > > couldn't > > > > > > > > > figure > > > > > > >=20 > > > > > > > > > out how to get it to work. > > > > > > > > > -----Original Message----- > > > > > > > > > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > > > > > > > > > Sent: Tuesday, April 12, 2005 3:42 PM > > > > > > > > > To: users@httpd.apache.org > > > > > > > > > Subject: RE: [users@httpd] Apache install > > > > > > > > >=20 > > > > > > > > > Now that we know your config is more or less correct,=20 > > > > > > > > > we'd > >=20 > > > > > > > > > have to > > > > > >=20 > > > > > > > > > turn to how things were built. > > > > > > > > >=20 > > > > > > > > > What OS is this? Did you run the appropriate link > > configuring > > > >=20 > > > > > > > > > program > > > > > > > >=20 > > > > > > > > > (ldconfig, probably) after moving the .so files to > > > > /usr/local/lib? > > > > > >=20 > > > > > > > > > Can you show us the configure options for your Apache > > build? > > > > > > > > >=20 > > > > > > > > > By the way, you don't need to have two LoadModule=20 > > > > > > > > > lines > > for > > > > > > > > mod_ssl.so. > > > > > > > > >=20 > > > > > > > > > I suggested changing the example line as the simplest > > method > > > > > > > > > to get the right configuration, but since you've=20 > > > > > > > > > obviously > >=20 > > > > > > > > > found some > > > > > >=20 > > > > > > > > > good example configs, it's really no longer necessary. > > > > > > > > >=20 > > > > > > > > > On Tue, 12 Apr 2005, Plantier, Spencer wrote: > > > > > > > > >=20 > > > > > > > > > > Here is what my DSO looks like now:=20 > > > > > > > > > >=20 > > > > > > > > > > # > > > > > > > > > > # Dynamic Shared Object (DSO) Support # # To be able > > > > > > > > > > to > > use > > > > > > > > > > the functionality of a module which was built as a > > > > > > > > >=20 > > > > > > > > > > DSO you # have to place corresponding `LoadModule'=20 > > > > > > > > > > lines > > at > > > > > > > > > > this > > > > > >=20 > > > > > > > > > > location so the # directives contained in it are > > actually > > > > > > > > > > available _before_ they are used. > > > > > > > > > > # Statically compiled modules (those listed by=20 > > > > > > > > > > `httpd > > -l') > > > > > > > > > > do not need > > > > > > > > >=20 > > > > > > > > > > # to be loaded here. > > > > > > > > > > # > > > > > > > > > > # Example: > > > > > > > > > > LoadModule ssl_module modules/mod_ssl.so #=20 > > > > > > > > > > LoadModule >=20 > > > > > > > > > > access_module > > > > > > > >=20 > > > > > > > > > > modules/mod_access.so LoadModule auth_module=20 > > > > > > > > > > modules/mod_auth.so > > > > > >=20 > > > > > > > > > > LoadModule auth_anon_module modules/mod_auth_anon.so > > > > > > > > > > LoadModule auth_dbm_module modules/mod_auth_dbm.so=20 > > > > > > > > > > LoadModule auth_digest_module=20 > > > > > > > > > > modules/mod_auth_digest.so > >=20 > > > > > > > > > > LoadModule ext_filter_module=20 > > > > > > > > > > modules/mod_ext_filter.so >=20 > > > > > > > > > > LoadModule include_module modules/mod_include.so > > LoadModule > > > > > > > > > > log_config_module > > > > > > >=20 > > > > > > > > > > modules/mod_log_config.so LoadModule=20 > > > > > > > > > > log_forensic_module > >=20 > > > > > > > > > > modules/mod_log_forensic.so LoadModule env_module=20 > > > > > > > > > > modules/mod_env.so > > > > > > > >=20 > > > > > > > > > > LoadModule mime_magic_module=20 > > > > > > > > > > modules/mod_mime_magic.so >=20 > > > > > > > > > > LoadModule cern_meta_module modules/mod_cern_meta.so > > > > > > > > > > LoadModule expires_module modules/mod_expires.so > > LoadModule > > > > > > > > > > headers_module modules/mod_headers.so LoadModule=20 > > > > > > > > > > usertrack_module modules/mod_usertrack.so LoadModule > > > > > > > > > > unique_id_module modules/mod_unique_id.so LoadModule > > > > > > > > > > setenvif_module modules/mod_setenvif.so > > > > > > > > > SSL> >=20 > > > > > > > > > > LoadModule ssl_module modules/mod_ssl.so > > > > > > > > > > LoadModule mime_module modules/mod_mime.so=20 > > > > > > > > > > LoadModule dav_module modules/mod_dav.so LoadModule=20 > > > > > > > > > > status_module >=20 > > > > > > > > > > modules/mod_status.so LoadModule autoindex_module=20 > > > > > > > > > > modules/mod_autoindex.so LoadModule asis_module > > > > > >=20 > > > > > > > > > > modules/mod_asis.so LoadModule info_module=20 > > > > > > > > > > modules/mod_info.so LoadModule cgi_module > > modules/mod_cgi.so > > > >=20 > > > > > > > > > > LoadModule dav_fs_module modules/mod_dav_fs.so > > LoadModule > > > > > > > > > > vhost_alias_module modules/mod_vhost_alias.so=20 > > > > > > > > > > LoadModule > >=20 > > > > > > > > > > negotiation_module modules/mod_negotiation.so=20 > > > > > > > > > > LoadModule > >=20 > > > > > > > > > > dir_module modules/mod_dir.so LoadModule imap_module > > > > > > > > > > modules/mod_imap.so LoadModule actions_module > > > > > > > >=20 > > > > > > > > > > modules/mod_actions.so LoadModule speling_module=20 > > > > > > > > > > modules/mod_speling.so LoadModule userdir_module=20 > > > > > > > > > > modules/mod_userdir.so LoadModule alias_module=20 > > > > > > > > > > modules/mod_alias.so LoadModule rewrite_module > > > > > > > modules/mod_rewrite.so > > > > > > > > > > LoadModule php5_module modules/libphp5.so > > > > > > > > > >=20 > > > > > > > > > > And my httpd -l shows: > > > > > > > > > >=20 > > > > > > > > > > Compiled in modules: > > > > > > > > > > core.c > > > > > > > > > > prefork.c > > > > > > > > > > http_core.c > > > > > > > > > > mod_so.c > > > > > > > > > >=20 > > > > > > > > > > I still get the same error: > > > > > > > > > >=20 > > > > > > > > > > Syntax error on line 231 of > > > > /usr/local/apache2/conf/httpd.conf: > > > > > > > > > > Cannot load /usr/local/apache2/modules/mod_ssl.so=20 > > > > > > > > > > into > > > > server: > > > > > > > > > ld.so.1: > > > > > > > > > > /usr/local/apache2/bin/httpd: fatal: relocation error: > > file > > > > > > > > > > /usr/local/apache2/modules/mod_ssl.so: symbol > > > > X509_INFO_free:=20 > > > > > > > > > > referenced symbol not found > > > > > > > > > >=20 > > > > > > > > > > Any help would be appreciated.=20 > > > > > > > > > >=20 > > > > > > > > > > Thanks.=20 > > > > > > > > > >=20 > > > > > > > > > > -----Original Message----- > > > > > > > > > > From: Craig Dunigan [mailto:cdunigan@doit.wisc.edu] > > > > > > > > > > Sent: Friday, April 08, 2005 2:47 PM > > > > > > > > > > To: users@httpd.apache.org > > > > > > > > > > Subject: RE: [users@httpd] Apache install > > > > > > > > > >=20 > > > > > > > > > > So, as the instructions say, anything that doesn't=20 > > > > > > > > > > show > > up > > > > > > > > > > in 'httpd > > > > > > > > > -l' > > > > > > > > > >=20 > > > > > > > > > > has to be loaded in httpd.conf with a LoadModule > > statement. > > > >=20 > > > > > > > > > > Replace > > > > > > > >=20 > > > > > > > > > > 'foo' > > > > > > > > > > with 'ssl' in the example line, uncomment it, and=20 > > > > > > > > > > try > > again. > > > > > > > > > >=20 > > > > > > > > > > On Fri, 8 Apr 2005, Plantier, Spencer wrote: > > > > > > > > > >=20 > > > > > > > > > > > httpd -l shows: > > > > > > > > > > > # ./httpd -l > > > > > > > > > > > Compiled in modules: > > > > > > > > > > > core.c > > > > > > > > > > > prefork.c > > > > > > > > > > > http_core.c > > > > > > > > > > > mod_so.c > > > > > > > > > > >=20 > > > > > > > > > > >=20 > > > > > > > > > > > -----Original Message----- > > > > > > > > > > > From: Craig Dunigan=20 > > > > > > > > > > > [mailto:cdunigan@doit.wisc.edu] > > > > > > > > > > > Sent: Friday, April 08, 2005 2:25 PM > > > > > > > > > > > To: users@httpd.apache.org > > > > > > > > > > > Subject: RE: [users@httpd] Apache install > > > > > > > > > > >=20 > > > > > > > > > > > And what does 'httpd -l' show you? > > > > > > > > > > >=20 > > > > > > > > > > > On Fri, 8 Apr 2005, Plantier, Spencer wrote: > > > > > > > > > > >=20 > > > > > > > > > > > > =20 > > > > > > > > > > > > This is what is shows when I do a search on DSO: > > > > > > > > > > > > # > > > > > > > > > > > > # Dynamic Shared Object (DSO) Support # # To be=20 > > > > > > > > > > > > able > > to > > > > > > > > > > > > use the functionality of a module which was=20 > > > > > > > > > > > > built as > > a > > > > > > > > > > >=20 > > > > > > > > > > > > DSO you # have to place corresponding `LoadModule' > > lines > > > >=20 > > > > > > > > > > > > at this > > > > > > > >=20 > > > > > > > > > > > > location so the # directives contained in it are > > > > > > > > > > > > actually available _before_ they are used. > > > > > > > > > > > > # Statically compiled modules (those listed by > > `httpd > > > > > > > > > > > > -l') do not need > > > > > > > > > > >=20 > > > > > > > > > > > > # to be loaded here. > > > > > > > > > > > > # > > > > > > > > > > > > # Example: > > > > > > > > > > > > # LoadModule foo_module modules/mod_foo.so # > > > > > > > > > > > >=20 > > > > > > > > > > > > -----Original Message----- > > > > > > > > > > > > From: Robert Zagarello [mailto:bzag0@yahoo.com] > > > > > > > > > > > > Sent: Friday, April 08, 2005 2:18 PM > > > > > > > > > > > > To: users@httpd.apache.org > > > > > > > > > > > > Subject: Re: [users@httpd] Apache install > > > > > > > > > > > >=20 > > > > > > > > > > > >=20 > > > > > > > > > > > > Do you need to put a LoadModule directive in > > httpd.conf > > > > > > > > > > > > for > > > > > > > ssl? > > > > > > > >=20 > > > > > > > > > > > > Do > > > > > > > > > >=20 > > > > > > > > > > > > a > > > > > > > > > > >=20 > > > > > > > > > > > > search in your httpd.conf for "DSO". Check if=20 > > > > > > > > > > > > your mod_ssl was statically compiled using=20 > > > > > > > > > > > > "httpd > -l" > > which > > > > > > > > > > > > lists the statically compiled modules. > > > > > > > > > > > >=20 > > > > > > > > > > > > BZAG > > > > > > > > > > > > +++++++++++++++++++++++ > > > > > > > > > > > >=20 > > > > > > > > > > > > >From Spencer Plantier: > > > > > > > > > > > >=20 > > > > > > > > > > > > I have installed openssl without any errors and=20 > > > > > > > > > > > > php without any > > > > > > > > > > > errors. > > > > > > > > > > > > Could someone help me troubleshoot this error. I > > > > > > > > > > > > am > > new > > > > > > > > > > > > to apache and am starting to hit deadlines on=20 > > > > > > > > > > > > trying > > to > > > > > > > > > > > > get apache up and > > > > > > > > > > running. > > > > > > > > > > > > Any help would be greatly appreciated. > > > > > > > > > > > >=20 > > > > > > > > > > > > This is how I built openssl: > > > > > > > > > > > >=20 > > > > > > > > > > > > ../config > > > > > > > > > > > > make > > > > > > > > > > > > make build-shared mv libssl.so* /usr/local/lib=20 > > > > > > > > > > > > mv libcrypto.so* /usr/local/lib > > > > > > > > > > > >=20 > > > > > > > > > > > >=20 > > > > > > > > > > > > Syntax error on line 251 of > > > > > > > > > > > > /usr/local/apache2/conf/httpd.conf: > > > > > > > > > > > > Cannot load=20 > > > > > > > > > > > > /usr/local/apache2/modules/mod_ssl.so > > into > > > > > > > > > > > > server: ld.so.1: > > > > > > > > > > > > /usr/local/apache2/bin/httpd: fatal: relocation > > error: > > > > > > > > > > > > file > > > > > > > > > > > > /usr/local/apache2/modules/mod_ssl.so: symbol > > > > > > > > > > > > X509_INFO_free:=20 > > > > > > > > > > > > referenced > > > > > > > > > > > > symbol not found # > > > > > > > > >=20 > > > > > > > > >=20 > > > > > > > > > > > -------------------------------------------------------------- > > > > > > > > > ---- > > > > > > > > > -- > > > > > > > > > - The official User-To-User support forum of the=20 > > > > > > > > > Apache > > HTTP > > > > > > > > > Server Project. > > > > > > > > > See for=20 > > > > > > > > > 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 > > > > > > > > >=20 > > > > > > > > >=20 > > > > > > > > > > > -------------------------------------------------------------- > > > > > > > > > ---- > > > > > > > > > -- > > > > > > > > > - The official User-To-User support forum of the=20 > > > > > > > > > Apache > > HTTP > > > > > > > > > Server > > > > > > > > Project. > > > > > > > > > See for=20 > > > > > > > > > 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 > > > > > > > > >=20 > > > > > > > >=20 > > > > > > > > -- > > > > > > > > Craig Dunigan > > > > > > > > IS Technical Services Specialist (I don't know what it > > means, > > > > > > > > either) Middleware - Enterprise Info Systems -=20 > > > > > > > > Department of > >=20 > > > > > > > > Info Technology University of Wisconsin, Madison > > > > > > > >=20 > > > > > > > > opinions expressed are my own, not the University's > > > > > > > >=20 > > > > > > > >=20 > > > > > > > > > > ---------------------------------------------------------------- > > > > > > > > ---- > > > > > > > > - The official User-To-User support forum of the Apache=20 > > > > > > > > HTTP > >=20 > > > > > > > > Server Project. > > > > > > > > See for=20 > > > > > > > > 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:=20 > > > > > > > > users-help@httpd.apache.org > > > > > > > >=20 > > > > > > > >=20 > > > > > > > > > > ---------------------------------------------------------------- > > > > > > > > ---- > > > > > > > > - The official User-To-User support forum of the Apache=20 > > > > > > > > HTTP > >=20 > > > > > > > > Server > > > > > > > Project. > > > > > > > > See for=20 > > > > > > > > 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:=20 > > > > > > > > users-help@httpd.apache.org > > > > > > > >=20 > > > > > > >=20 > > > > > > > -- > > > > > > > Craig Dunigan > > > > > > > IS Technical Services Specialist (I don't know what it=20 > > > > > > > means, > > > > > > > either) Middleware - Enterprise Info Systems - Department=20 > > > > > > > of > > Info > > > > > > > Technology University of Wisconsin, Madison > > > > > > >=20 > > > > > > > opinions expressed are my own, not the University's > > > > > > >=20 > > > > > > >=20 > > > > > > > > > ------------------------------------------------------------------ > > > > > > > --- The official User-To-User support forum of the Apache=20 > > > > > > > HTTP > >=20 > > > > > > > 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:=20 > > > > > > > users-help@httpd.apache.org > > > > > > >=20 > > > > > > >=20 > > > > > > > > > ------------------------------------------------------------------ > > > > > > > --- The official User-To-User support forum of the Apache=20 > > > > > > > HTTP > >=20 > > > > > > > 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:=20 > > > > > > > users-help@httpd.apache.org > > > > > > >=20 > > > > > >=20 > > > > > > -- > > > > > > Craig Dunigan > > > > > > IS Technical Services Specialist (I don't know what it=20 > > > > > > means, > > > > > > either) Middleware - Enterprise Info Systems - Department of > > Info > > > > > > Technology University of Wisconsin, Madison > > > > > >=20 > > > > > > opinions expressed are my own, not the University's > > > > > >=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 > > > > > >=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 > > > > > >=20 > > > > >=20 > > > > >=20 > > > >=20 > > > > -- > > > > Craig Dunigan > > > > IS Technical Services Specialist (I don't know what it means, > > either) > > > > Middleware - Enterprise Info Systems - Department of Info=20 > > > > Technology University of Wisconsin, Madison > > > >=20 > > > > opinions expressed are my own, not the University's > > > >=20 > > > >=20 > > > > > > -------------------------------------------------------------------- > > - > > > > The official User-To-User support forum of the Apache HTTP=20 > > > > 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 > > > >=20 > > > >=20 > > > > > > -------------------------------------------------------------------- > > - > > > > The official User-To-User support forum of the Apache HTTP=20 > > > > 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 > > > >=20 > > >=20 > > >=20 > >=20 > >=20 >=20 > -- > Craig Dunigan > IS Technical Services Specialist (I don't know what it means, either)=20 > Middleware - Enterprise Info Systems - Department of Info Technology=20 > University of Wisconsin, Madison >=20 > opinions expressed are my own, not the University's >=20 >=20 > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server=20 > 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 >=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 >=20 -- Craig Dunigan IS Technical Services Specialist (I don't know what it means, either) Middleware - Enterprise Info Systems - Department of Info Technology University of Wisconsin, Madison opinions expressed are my own, not the University's --------------------------------------------------------------------- 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 --------------------------------------------------------------------- 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