libssl.so - mod_ssl.so

2008-04-14 Thread John Minson
I have to re-create mod_ssl 2.8.1 for an old version of apache (1.3.19) 
and even though I have it/they compiled I'm confused about 2 things .


I have several servers with various kevels of apache and mod_ssl.

The mod_ssl lib seems to be called 'mod_ssl.so' in some cases and 
'libssl.so' in others . ?


The 'libssl.so' I just created is 272328 bytes in size where on another 
server its 1884650 bytes in size . Is this due to the way it was linked ?


I have not yet tested my newly compiled libssl .
begin:vcard
tel;work:843-218-6521
version:2.1
end:vcard



Re: libssl.so - mod_ssl.so

2008-04-14 Thread Yvo van Doorn
On Mon, Apr 14, 2008 at 10:13 AM, John Minson [EMAIL PROTECTED] wrote:
 I have to re-create mod_ssl 2.8.1 for an old version of apache (1.3.19) and
 even though I have it/they compiled I'm confused about 2 things .

  I have several servers with various kevels of apache and mod_ssl.

  The mod_ssl lib seems to be called 'mod_ssl.so' in some cases and
 'libssl.so' in others . ?

  The 'libssl.so' I just created is 272328 bytes in size where on another
 server its 1884650 bytes in size . Is this due to the way it was linked ?

  I have not yet tested my newly compiled libssl .


Sounds like the libssl.so file you create is dynamically linked
whereas the old version is statically linked. what does ldd show you
for both?

Btw I hope this apache server is internal unless you like getting your
server compromised. Look at all the changes (especially security wise)
that has been fixed since that version:
http://www.apache.org/dist/httpd/CHANGES_1.3
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  modssl-users@modssl.org
Automated List Manager[EMAIL PROTECTED]


Re: Cannot load mod_ssl.so into server: The operating system cannot run %1

2007-02-15 Thread Yvo van Doorn

This list is about mod_ssl under Apache 1.3.xx, just like modssl.org
said it was. Furthermore as the apache website states, mod_ssl is now
part of Apache 2.x thus the support would be there.

On 2/15/07, Andrew Madu [EMAIL PROTECTED] wrote:

Operating system: Windows XP Professional
Version: 2002
Service Pack: 2

Apache HTTP version: 2.2.4 (Binary)

Syntax error on line 114 of httpd.conf:
Cannot load mod_ssl.so into server: The operating system cannot run %1

Of course line 114 in my httpd.conf document is:
LoadModule ssl_module modules/mod_ssl.so

The mod_ssl.so module is situated in C:\Program Files\Apache Software
Foundation\Apache2.2\modules.

What is the issue here and how can I best resolve it?

--
Regards

Andrew


__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  modssl-users@modssl.org
Automated List Manager[EMAIL PROTECTED]


Re: Cannot load mod_ssl.so into server: The operating system cannot run %1

2007-02-15 Thread Andrew Madu

Hi,

Furthermore as the apache website states, mod_ssl is now

part of Apache 2.x thus the support would be there.



Well whatever it may say in the documentation I can confirm that the
mod_ssl.so molue is definately not being created during the binary build.

Does anyone know where I can get win32 help for mod_ssl?

--
Regards

Andrew


mod_ssl.so??????

2003-03-18 Thread Mohsin Sabir.




Hello:
I am working with Microsoft 
Web Servers from quite a while but opted to go with Apache Web Servers because 
of it's stability and growing demands.
I am trying to configure mod_ssl on WindowsNT4 Server runningApache. I have placed all the files where they 
belong exactly but I am getting this error message:
CANNOT LOAD APACHE/MODULES/MOD_SSL.SO - I have learnt 
that DLL's are gone crazy which I 
placed under winnt\system32\ if so 
pleaseassist how can this glitch be rectified.
Kind 
Regards,
Mohsin




mailto:[EMAIL PROTECTED] 

 
__
 The information 
transmitted is intended only for the person or entity to which it is addressed 
and may contain confidential and/or privileged material. Any review, 
retransmission, dissemination or other use of, or taking of any action in 
reliance upon, this information by persons or entities other than the intended 
recipient is prohibited. If you received this in error, please 
contact the sender and delete the material from any 
computer.



tracedata.GIF
Description: Binary data


mcse.gif
Description: Binary data


mcsa.gif
Description: Binary data


Blank Bkgrd.gif
Description: Binary data


Cannot Load mod_ssl.so

2003-03-11 Thread Joannou Ng
Hi people,

I compiled and installed the mod_ssl DSO with apxs. But when I try to 
restart Apache, it tells me it couldn't load the module:

Undefined symbol ssl_cmd_SSLMutex

Anybody know what could be the problem?

Cheers, Joannou.

There are only 10 kinds of people in this world; those who know binary 
and those who don't. - Anonymous

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]


RE: can't load /usr/local/apache2/modules/mod_ssl.sointoserver/usr/local/apache2/modules/mod_ssl.so undefined symbol x509_free

2002-08-19 Thread Cliff Woolley

On Mon, 19 Aug 2002, Venkat Reddy Valluri wrote:

 As you told I checked the directory /usr/local/lib for libcrypto.so and
 libssl.so, but I found out only libcrypto.a and libssl.a,
   can you please let me know how to configure openssl to get these modules
 shared like libcrypto.so and libssl.so

Frankly it's always been a bit of a pain for me.  The default Makefile
doesn't seem to behave quite right.

You can try this:

make build-shared

But then you have to install them by hand because the $(SHARED_LIBS)
variable has no value in the default Makefile so make install doesn't see
them.  Alternatively, you can edit the Makefile as follows:

--- Makefile2002-03-17 20:03:36.0 -0500
+++ Makefile.new2002-08-19 12:44:49.0 -0400
@@ -183,7 +183,7 @@
 LIBS=   libcrypto.a libssl.a
 SHARED_CRYPTO=libcrypto$(SHLIB_EXT)
 SHARED_SSL=libssl$(SHLIB_EXT)
-SHARED_LIBS=
+SHARED_LIBS=libcrypto$(SHLIB_EXT) libssl$(SHLIB_EXT)
 SHARED_LIBS_LINK_EXTS=.so.$(SHLIB_MAJOR) .so

 GENERAL=Makefile

and then run:

make clean
make
make install

and it should just work.  I think.  Haven't tried it recently.  :)  Let me
know how it goes.  And if anybody else out there knows something about
this that I'm missing (which is possible), please speak up.  :-]

--Cliff
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



RE: Apache Mod_SSL Cannot load /modules/mod_ssl.so

2002-07-29 Thread Noah White


You can do that or you can put the path to your OPENSSL's bin directory in
your PATH environment variable and start the server under that environment.

-Noah


 -Original Message-
 From: David W [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, July 28, 2002 2:20 PM
 To: [EMAIL PROTECTED]
 Subject: Re: Apache  Mod_SSL Cannot load /modules/mod_ssl.so
 
 Hopefully I'm not duplicating someone else's response,
 but I think your answer can be found by searching the
 archives.  It looks like you didn't copy the openssl
 dlls into your c:\winnt\system32 directory.  You need:
 libeay32.dll
 ssleay32.dll
 
 -david
 
 --- Oliver Enders [EMAIL PROTECTED] wrote:
  Hello ervebody,
 
  I´ve got the following problem:
 
  I´ve installed a apache_1.3.23 with OpenSSL, mod_ssl
  and mod_jk with WIN 2000 everything works fine when
  the LoadModule for mod_ssl is commented out. After
  including the LoadModule line, i get the following
  Syntax Error:
 
  Syntax error on line 195 of
  c:/ptc/apache/conf/httpd.conf:
  Cannot load /modules/mod_ssl.so into server: (126)
  Das angegebene Modul wurde nicht gefunden:
 
  (Module couldnt be found)
 
  But it is the definately there !!
 
  I´ve allready set the PATH  in the system variables
  to /apache/conf/ because i thought that might be the
  problem, but the path in the Error-message is
  absoloute, so it cant be..
 
  Has anybody had/solved the same problems ??
 
  Thanx a lot
 
  Oliver
 
 
 __
 Do You Yahoo!?
 Yahoo! Health - Feel better, live better
 http://health.yahoo.com
 __
 Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
 User Support Mailing List  [EMAIL PROTECTED]
 Automated List Manager[EMAIL PROTECTED]
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: Apache Mod_SSL Cannot load /modules/mod_ssl.so

2002-07-28 Thread David W

Hopefully I'm not duplicating someone else's response,
but I think your answer can be found by searching the
archives.  It looks like you didn't copy the openssl
dlls into your c:\winnt\system32 directory.  You need:
libeay32.dll
ssleay32.dll

-david

--- Oliver Enders [EMAIL PROTECTED] wrote:
 Hello ervebody,
 
 I´ve got the following problem:
 
 I´ve installed a apache_1.3.23 with OpenSSL, mod_ssl
 and mod_jk with WIN 2000 everything works fine when
 the LoadModule for mod_ssl is commented out. After
 including the LoadModule line, i get the following
 Syntax Error:
 
 Syntax error on line 195 of
 c:/ptc/apache/conf/httpd.conf:
 Cannot load /modules/mod_ssl.so into server: (126)
 Das angegebene Modul wurde nicht gefunden:
 
 (Module couldnt be found) 
 
 But it is the definately there !!
 
 I´ve allready set the PATH  in the system variables
 to /apache/conf/ because i thought that might be the
 problem, but the path in the Error-message is
 absoloute, so it cant be.. 
 
 Has anybody had/solved the same problems ??
 
 Thanx a lot 
 
 Oliver


__
Do You Yahoo!?
Yahoo! Health - Feel better, live better
http://health.yahoo.com
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: Apache Mod_SSL Cannot load /modules/mod_ssl.so

2002-07-28 Thread a . moon

I am away from the office until the Monday 5th August 2002 

I will get back to you as soon as i can on my return.

If it's an urgent Online Learning Support Unit / Web/ MUBSWEB/ MUBS Online matter
that requires urgent attention then  please contact either  Sanjay1 or Jeff1
who should be able to help.

All the best 
Alex
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Apache Mod_SSL Cannot load /modules/mod_ssl.so

2002-07-25 Thread Oliver Enders



Hello ervebody,

I´ve got the following problem:

I´ve installed a apache_1.3.23 with OpenSSL, 
mod_ssl and mod_jkwith WIN 2000 everything works fine when the LoadModule 
for mod_ssl is commented out. After including the LoadModule line, i get the 
following Syntax Error:

Syntax error on line 195 of 
c:/ptc/apache/conf/httpd.conf:Cannot load /modules/mod_ssl.so into server: 
(126) Das angegebene Modul wurde nicht gefunden:

(Module couldnt be found) 

But it is the definately there !!

I´ve allready set the PATH in the system 
variables to /apache/conf/ because i thoughtthat might be the problem, 
butthe path in the Error-message is absoloute, so it cant 
be..

Has anybody had/solved the same problems 
??

Thanx a lot 

Oliver


LoadModule mod_ssl.so fails with win 2000, apache 1.3.26, mod_ssl 2.8.10, openssl 0.9.6d

2002-07-18 Thread RUSHTON,NIGEL (HP-UnitedKingdom,ex2)

Hello,

Apache fails to start with message:

Syntax error on line 193 of c:/readybuilt_1.3.26_2.8.10/conf/httpd.conf:
Cannot load c:/3party/apache/modules/mod_ssl.so into server: (182)

This fails both with my own build, and also the build at:

http://www.modssl.org/contrib/Apache_1.3.26-Mod_SSL_2.8.10-OpenSSL_0.9.6d-Wi
n32.zip
 
I have checked that the mod_ssl.so file is present, and not read only.

The same symptoms were reported by Danalien
[mailto:[EMAIL PROTECTED]]
on apache 1.3.24 + mod_ssl 2.8.8, also with Windows 2000.

Any suggestions?

Nigel Rushton
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



apache 2.0.39 + mod_ssl.so

2002-07-11 Thread Sauer, Adrian

...this error occurs during start with -DSSL:
Cannot load /opt/apache_2.0.39/modules/mod_ssl.so into server:
/opt/apache_2.0.39/modules/mod_ssl.so: undefined symbol: X509_free

here is how i build it:
- tar -xzvf httpd
- cd httpd
- ./configure --prefix=/opt/sauer/local/httpd --enable-mods-shared=all
--disable-auth-digest --enable-deflate --disable-cern-meta
--disable-usertrack --disable-unique-id --enable-ssl
- make -j3
- make install

# ldd httpd
libz.so.1 = /usr/lib/libz.so.1 (0x4001b000)
libaprutil.so.0 = /opt/apache_2.0.39/lib/libaprutil.so.0
(0x40029000)
libgdbm.so.2 = /usr/lib/libgdbm.so.2 (0x4003b000)
libdb-3.3.so = /usr/lib/libdb-3.3.so (0x40041000)
libexpat.so.0 = /opt/apache_2.0.39/lib/libexpat.so.0 (0x400c1000)
libapr.so.0 = /opt/apache_2.0.39/lib/libapr.so.0 (0x400de000)
libm.so.6 = /lib/libm.so.6 (0x400fc000)
libcrypt.so.1 = /lib/libcrypt.so.1 (0x4011e000)
libnsl.so.1 = /lib/libnsl.so.1 (0x4014b000)
libdl.so.2 = /lib/libdl.so.2 (0x40161000)
libpthread.so.0 = /lib/libpthread.so.0 (0x40165000)
libc.so.6 = /lib/libc.so.6 (0x4017c000)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x4000)

# ldd mod_ssl.so
libc.so.6 = /lib/libc.so.6 (0x4003)
/lib/ld-linux.so.2 = /lib/ld-linux.so.2 (0x8000)


# ldd --version
ldd (GNU libc) 2.2.5
Copyright (C) 2002 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.


i also tried to install it with the installed version of openssl0.9.6d and
option --with-ssl=/opt/openssl0.9.6d, but the same error occurs

what can i do ? 

thanx
  Adrian Sauer
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: apache 2.0.39 + mod_ssl.so

2002-07-11 Thread Cliff Woolley

On Thu, 11 Jul 2002, Sauer, Adrian wrote:

 ...this error occurs during start with -DSSL:
 Cannot load /opt/apache_2.0.39/modules/mod_ssl.so into server:
 /opt/apache_2.0.39/modules/mod_ssl.so: undefined symbol: X509_free

This is a frequently asked question.  Please see (among other places):

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8034

--Cliff

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



RE: [BugDB] mod_ssl.so does not load (again, sorry) (PR#704)

2002-05-16 Thread John . Airey

I believe you need openssl installed as you do with the apache 1.3 mod_ssl
combination. At the very least you need /lib/libcrypto.so.0 and
/lib/libssl.so.0. 

John


 -Original Message-
 From: Frederik Uyttersprot [mailto:[EMAIL PROTECTED]]
 Sent: 16 May 2002 12:26
 To: [EMAIL PROTECTED]
 Subject: Re: [BugDB] mod_ssl.so does not load (again, sorry) (PR#704)
 
 
 Oeps,
 
 Let me correct myself... only no-ssl binaries on 
 httpd.apache.org for now.
 Guess someone should compile it for you then (if possible at all).
 
 Sorry,
 -FU
 
 - Original Message -
 From: Uyttersprot Frederik [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Thursday, May 16, 2002 1:15 PM
 Subject: Re: [BugDB] mod_ssl.so does not load (again, sorry) (PR#704)
 
 
  Hello Dimitri,
 
  Did you give Apache 2.0.36 binaries a try?
  It should have mod_ssl compiled into to by default as far as I know.
 
  I managed to get all the ssl stuff and more working on 
 Solaris, so that
  won't be of any good for you
 
  Greets,
  Frederik.
 
  ps. small world euh :-)
 
  - Original Message -
  From: [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Cc: [EMAIL PROTECTED]
  Sent: Wednesday, May 15, 2002 2:28 AM
  Subject: [BugDB] mod_ssl.so does not load (again, sorry) (PR#704)
 
 
   Full_Name: Dimitri Pochet
   Version: Apache_1.3.24-Mod_SSL_2.8.8-OpenSSL_0.9.6c-WIN32.zip
   OS: NT4 SP6a
   Submission from: (NULL) (217.136.205.41)
  
  
   Steps to reproduce: Installation of Apache, keys generation and
  installation of
   modSSL, according to 
 http://tud.at/programm/apache-ssl-win32-howto.php3
   libeay.dll and ssleay.dll copied in winnt/system32. 
 Earlier such files
  (from
   teraterm ttssh) removed.
   openssl.exe in the path (and runnable from any working dir).
   httpd.conf was edited according to the install page 
 above, including
  AddModule
   and LoadModule.
  
   Symptom :
   Syntax error on line 173 of C:/Program Files/Apache
   Group/Apache2/conf/httpd.conf:
   Cannot load C:/Program Files/Apache 
 Group/Apache2/modules/mod_ssl.so
 into
   server: The specified module could not be found.
  
   log levels set to debug.
  
   Error logs:
   Nothing in event DB
   Nothing in error.log (except half a timestamp)
   Nothing in access.log except my successful attempts on port 80
   No ssl.log has been created
  
   Tried to use a strace on apache.exe, no success.
   Then, tried using earlier versions of apache+modssl, same error.
   Unfortunately I do not know C, otherwise I would have 
 tried adding debug
  info
   from the .so.
   Given up, tima beg for help.
  
   Question:
   appart solving this problem which looks uneasy when I see 
 the unanswered
  rfh on
   the web, is there a way to activate some debug on loading 
 of dso modules
 ?
   what about the new apache versions ? any intention to 
 follow them up ?
  
  
   
 __
   Apache Interface to OpenSSL (mod_ssl)   
 www.modssl.org
   User Support Mailing List  
 [EMAIL PROTECTED]
   Automated List Manager
 [EMAIL PROTECTED]
  
 
  
 __
  Apache Interface to OpenSSL (mod_ssl)   
 www.modssl.org
  User Support Mailing List  
 [EMAIL PROTECTED]
  Automated List Manager
 [EMAIL PROTECTED]
 
 
 __
 Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
 User Support Mailing List  [EMAIL PROTECTED]
 Automated List Manager[EMAIL PROTECTED]
 

- 

NOTICE: The information contained in this email and any attachments is 
confidential and may be legally privileged. If you are not the 
intended recipient you are hereby notified that you must not use, 
disclose, distribute, copy, print or rely on this email's content. If 
you are not the intended recipient, please notify the sender 
immediately and then delete the email and any attachments from your 
system.

RNIB has made strenuous efforts to ensure that emails and any 
attachments generated by its staff are free from viruses. However, it 
cannot accept any responsibility for any viruses which are 
transmitted. We therefore recommend you scan all attachments.

Please note that the statements and views expressed in this email 
and any attachments are those of the author and do not necessarily 
represent those of RNIB.

RNIB Registered Charity Number: 226227

Website: http://www.rnib.org.uk 

14th June 2002 is RNIB Look Loud Day - visit http://www.lookloud.org.uk to
find out all about it.

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager

[BugDB] mod_ssl.so does not load (again, sorry) (PR#704)

2002-05-15 Thread modssl-bugdb

Full_Name: Dimitri Pochet
Version: Apache_1.3.24-Mod_SSL_2.8.8-OpenSSL_0.9.6c-WIN32.zip
OS: NT4 SP6a
Submission from: (NULL) (217.136.205.41)


Steps to reproduce: Installation of Apache, keys generation and installation of
modSSL, according to http://tud.at/programm/apache-ssl-win32-howto.php3
libeay.dll and ssleay.dll copied in winnt/system32. Earlier such files (from
teraterm ttssh) removed.
openssl.exe in the path (and runnable from any working dir).
httpd.conf was edited according to the install page above, including AddModule
and LoadModule.

Symptom :
Syntax error on line 173 of C:/Program Files/Apache
Group/Apache2/conf/httpd.conf:
Cannot load C:/Program Files/Apache Group/Apache2/modules/mod_ssl.so into
server: The specified module could not be found.

log levels set to debug.

Error logs:
Nothing in event DB
Nothing in error.log (except half a timestamp)
Nothing in access.log except my successful attempts on port 80
No ssl.log has been created

Tried to use a strace on apache.exe, no success.
Then, tried using earlier versions of apache+modssl, same error.
Unfortunately I do not know C, otherwise I would have tried adding debug info
from the .so.
Given up, tima beg for help.

Question:
appart solving this problem which looks uneasy when I see the unanswered rfh on
the web, is there a way to activate some debug on loading of dso modules ?
what about the new apache versions ? any intention to follow them up ?


__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Problem loading mod_ssl.so in Apache 1.3.24

2002-04-23 Thread sks

Hi there,

For some reason Apache refuses to load the mod_ssl module. It always
complains it can't find the module although the required file is in the
specifiedpath. Has anyone encountered this problem? Does anyone know a solution?

I'm running Apache 1.3.24 on Windows NT service pack 5.

Thanks in advance,
Stef

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: Problem loading mod_ssl.so in Apache 1.3.24

2002-04-23 Thread Cliff Woolley

On Tue, 23 Apr 2002, Aryeh Katz wrote:

 make sure that ssleay and libeay are both in the path.

Um, or libssl and libcrypto from openssl (in the library path, that is).
ssleay's getting to be pretty old these days.  :)

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: Problem loading mod_ssl.so in Apache 1.3.24

2002-04-23 Thread Aryeh Katz

 On Tue, 23 Apr 2002, Aryeh Katz wrote:
 
  make sure that ssleay and libeay are both in the path.
 
 Um, or libssl and libcrypto from openssl (in the library path, that
 is). ssleay's getting to be pretty old these days.  :)
poster specified a win32 environment, ssleay32.dll is one of the two openssl libs on 
win32.
Aryeh

---
Aryeh Katz
VASCO   
www.vasco.com   

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: Problem loading mod_ssl.so in Apache 1.3.24

2002-04-23 Thread Cliff Woolley

On Tue, 23 Apr 2002, Aryeh Katz wrote:

 poster specified a win32 environment, ssleay32.dll is one of the two
 openssl libs on win32.

Ah missed that.  Sorry.  :)

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Re: [BugDB] can't load x:\apache\mod_ssl.so into server (PR#694)

2002-04-17 Thread modssl-bugdb

Full_Name: Daphne Chen
Version: 2.8.4
OS: win2K
Submission from: (NULL) (12.44.172.142)


Receive the following error:

C:\WINNT\Profiles\Administratorapache -D SSL
Syntax error on line 203 of d:/apache/conf/httpd.conf:
Cannot load d:/apache/modules/mod_ssl.so into server: (126) The specified
module
 could not be found:

It seems other people had the same problem.  However there is no useful
recommand solution besides check the path.  Believe me, the path is set.  The
file is there.

Thanks!

Daphne
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



RE: Cannot load mod_ssl.so

2001-04-10 Thread BURTIN



Hi,
For 
Win NT
Look 
if the directory of the openssl.exe file is define in your 
PATH

  -Original Message-From: Aviram Birenbaum 
  [mailto:[EMAIL PROTECTED]]Sent: mercredi, 4. avril 
  2001 17:53To: [EMAIL PROTECTED]Subject: Cannot 
  load mod_ssl.so
  
  Hi
  I'm having trouble with the installation of the 
  Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip
  The file was downloaded from the contribution area.
  When starting the apache I got a message:
  "Syntax error on line 205 of c:/java/tools/apache/conf/httpd.conf:
  Cannot load c:/java/tools/apache/modules/mod_ssl.so into server: (126) The 
  specified module could not be found: "
  I didn't find the reason for this problem. The mod_ssl.so is a win32 dll 
  and has an exports the function ssl_module.
  In the httpd.conf I defined "LoadModule ssl_module modules/mod_ssl.so"
  Please let me know if you know the cause for this problem.
  Thanks
  Aviram Birenbaum
  Email: [EMAIL PROTECTED] 


RE: Cannot load mod_ssl.so

2001-04-10 Thread D | L | P R

Hi,
this is the first time that i'm using this .what shld be the path of module files ?

From: "Burtin, Stéphane" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED] 
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Subject: RE: Cannot load mod_ssl.so 
Date: Tue, 10 Apr 2001 11:58:48 +0200 
 
Hi, 
it's possible that the version of openssl.exe ,libeay32.dll or ssleay32.dll 
in openssl\bin are not the same that modssl needs. 
Look in your environnement path if a previous versions of openssl is already 
and remove it. 
 
 
 
-Original Message- 
From: D | L | P R [mailto:[EMAIL PROTECTED]] 
Sent: mardi, 10. avril 2001 11:03 
To: [EMAIL PROTECTED] 
Subject: Cannot load mod_ssl.so 
 
 
 
 
 
 
 
Hi 
I'm having trouble with the installation of the 
Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip 
I use Windows 2000 
 
 
 
When starting the apache I got a message: 
 
Cannot locate API structure "ssl-module " The specified procedure could not 
be found: " 
I didn't find the reason for this problem. The mod_ssl.so is a win32 dll and 
 
has an exports the function ssl_module. 
In the httpd.conf I defined "LoadModule ssl_module modules/mod_ssl.so" 
 
 
 
Please let me know if you know the cause for this problem. 
 
 
 
Thanks 
 
DILIP.R 
 
 
 
 
 
Email: [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>
 
 _ 
 
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com 
 . 
 
 
 
 
__ 
Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing 
List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED] 
 
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]


RE: Cannot load mod_ssl.so

2001-04-10 Thread Burtin, Stéphane



This 
is for Wint NT.
You 
need to define the path because the *.dll of openssl are not registered in your 
systemandapache can't find them.
So you 
must define the path in the environnement
-Original Message-From: D | 
L | P R [mailto:[EMAIL PROTECTED]]Sent: mardi, 10. avril 2001 
12:11To: [EMAIL PROTECTED]Subject: RE: Cannot load 
mod_ssl.so

  
  Hi,
  this is the first time that i'm using this .what shld be the path of module 
  files ?
  
  From: "Burtin, Stéphane" <[EMAIL PROTECTED]>
  Reply-To: [EMAIL PROTECTED] 
  To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
  Subject: RE: Cannot load mod_ssl.so 
  Date: Tue, 10 Apr 2001 11:58:48 +0200 
   
  Hi, 
  it's possible that the version of openssl.exe ,libeay32.dll or 
  ssleay32.dll 
  in openssl\bin are not the same that modssl needs. 
  Look in your environnement path if a previous versions of 
  openssl is already 
  and remove it. 
   
   
   
  -Original Message- 
  From: D | L | P R [mailto:[EMAIL PROTECTED]] 
  Sent: mardi, 10. avril 2001 11:03 
  To: [EMAIL PROTECTED] 
  Subject: Cannot load mod_ssl.so 
   
   
   
   
   
   
   
  Hi 
  I'm having trouble with the installation of the 
  Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip 
  I use Windows 2000 
   
   
   
  When starting the apache I got a message: 
   
  Cannot locate API structure "ssl-module " The specified 
  procedure could not 
  be found: " 
  I didn't find the reason for this problem. The mod_ssl.so is a 
  win32 dll and 
   
  has an exports the function ssl_module. 
  In the httpd.conf I defined "LoadModule ssl_module 
  modules/mod_ssl.so" 
   
   
   
  Please let me know if you know the cause for this problem. 
   
   
   
  Thanks 
   
  DILIP.R 
   
   
   
   
   
  Email: [EMAIL PROTECTED] <MAILTO:[EMAIL PROTECTED]>
   
   _ 
   
  Get Your Private, Free E-mail from MSN Hotmail at 
  http://www.hotmail.com 
   . 
   
   
   
   
  __ 

  Apache Interface to OpenSSL (mod_ssl) www.modssl.org User 
  Support Mailing 
  List [EMAIL PROTECTED] Automated List Manager 
  [EMAIL PROTECTED] 
   
  
  
  Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  __ 
  Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List 
  [EMAIL PROTECTED] Automated List Manager 
[EMAIL PROTECTED]


RE: Cannot load mod_ssl.so

2001-04-10 Thread D | L | P R

i have said 
path="c:\winnt\system32;" for those dlls.When i say https://dilip.softit.gnfc.dom nothing happens .
when i say the same thing with http://dilip.softit.gnfc.dom i get the screen where it syas
"If you can see this, it means that the installation of the Apache web server software on this system was successful. You may now add content to this directory and replace this page"

Please do advice me.

From: "Burtin, Stéphane" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED] 
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Subject: RE: Cannot load mod_ssl.so 
Date: Tue, 10 Apr 2001 12:25:58 +0200 
 
This is for Wint NT. 
You need to define the path because the *.dll of openssl are not registered 
in your system and apache can't find them. 
So you must define the path in the environnement 
 
 -Original Message- 
From: D | L | P R [mailto:[EMAIL PROTECTED]] 
Sent: mardi, 10. avril 2001 12:11 
To: [EMAIL PROTECTED] 
Subject: RE: Cannot load mod_ssl.so 
 
 
 
Hi, 
 
this is the first time that i'm using this .what shld be the path of module 
files ? 
 
 
 
 From: "Burtin, Stéphane" 
 Reply-To: [EMAIL PROTECTED] 
 To: "'[EMAIL PROTECTED]'" 
 Subject: RE: Cannot load mod_ssl.so 
 Date: Tue, 10 Apr 2001 11:58:48 +0200 
  
 Hi, 
 it's possible that the version of openssl.exe ,libeay32.dll or ssleay32.dll 
 
 in openssl\bin are not the same that modssl needs. 
 Look in your environnement path if a previous versions of openssl is 
already 
 and remove it. 
  
  
  
 -Original Message- 
 From: D | L | P R [mailto:[EMAIL PROTECTED]] 
 Sent: mardi, 10. avril 2001 11:03 
 To: [EMAIL PROTECTED] 
 Subject: Cannot load mod_ssl.so 
  
  
  
  
  
  
  
 Hi 
 I'm having trouble with the installation of the 
 Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip 
 I use Windows 2000 
  
  
  
 When starting the apache I got a message: 
  
 Cannot locate API structure "ssl-module " The specified procedure could not 
 
 be found: " 
 I didn't find the reason for this problem. The mod_ssl.so is a win32 dll 
and 
  
 has an exports the function ssl_module. 
 In the httpd.conf I defined "LoadModule ssl_module modules/mod_ssl.so" 
  
  
  
 Please let me know if you know the cause for this problem. 
  
  
  
 Thanks 
  
 DILIP.R 
  
  
  
  
  
 Email: [EMAIL PROTECTED] 
  
  _ 
  
 Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com 
  . 
  
  
  
  
 __ 
 Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing 
 List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED] 
  
 
 _ 
 
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com 
 . 
 
 
 
 
__ 
Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing 
List [EMAIL PROTECTED] Automated List Manager [EMAIL PROTECTED] 
 
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]


RE: Cannot load mod_ssl.so

2001-04-10 Thread Burtin, Stéphane



ok,

if you 
have install apache like that :

d:\web\apache\
.
.
.

d:\web\openssl\bin\openssl.exe

d:\web\openssl\bin\libeay32.dll

d:\web\openssl\bin\libeay32.dll
.
.

you 
must define our path like that:
set 
path = %PATH%;d:\web\openssl\bin

  -Original Message-From: D | L | P R 
  [mailto:[EMAIL PROTECTED]]Sent: mardi, 10. avril 2001 
  12:43To: [EMAIL PROTECTED]Subject: RE: Cannot load 
  mod_ssl.so
  
  i have said 
  path="c:\winnt\system32;" for those dlls.When i say https://dilip.softit.gnfc.dom nothing 
  happens .
  when i say the same thing with http://dilip.softit.gnfc.dom i 
  get the screen where it syas
  "If you can see this, it means that the installation of the Apache web 
  server software on this system was successful. You may now add content to this 
  directory and replace this page"
  
  Please do advice me.
  
  From: "Burtin, Stéphane" <[EMAIL PROTECTED]>
  Reply-To: [EMAIL PROTECTED] 
  To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
  Subject: RE: Cannot load mod_ssl.so 
  Date: Tue, 10 Apr 2001 12:25:58 +0200 
   
  This is for Wint NT. 
  You need to define the path because the *.dll of openssl are 
  not registered 
  in your system and apache can't find them. 
  So you must define the path in the environnement 
   
   -Original Message- 
  From: D | L | P R [mailto:[EMAIL PROTECTED]] 
  Sent: mardi, 10. avril 2001 12:11 
  To: [EMAIL PROTECTED] 
  Subject: RE: Cannot load mod_ssl.so 
   
   
   
  Hi, 
   
  this is the first time that i'm using this .what shld be the 
  path of module 
  files ? 
   
   
   
   From: "Burtin, Stéphane" 
   Reply-To: [EMAIL PROTECTED] 
   To: "'[EMAIL PROTECTED]'" 
   Subject: RE: Cannot load mod_ssl.so 
   Date: Tue, 10 Apr 2001 11:58:48 +0200 

   Hi, 
   it's possible that the version of openssl.exe 
  ,libeay32.dll or ssleay32.dll 
   
   in openssl\bin are not the same that modssl needs. 
   Look in your environnement path if a previous versions of 
  openssl is 
  already 
   and remove it. 



   -Original Message- 
   From: D | L | P R [mailto:[EMAIL PROTECTED]] 
   Sent: mardi, 10. avril 2001 11:03 
   To: [EMAIL PROTECTED] 
   Subject: Cannot load mod_ssl.so 







   Hi 
   I'm having trouble with the installation of the 
   Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip 
   I use Windows 2000 



   When starting the apache I got a message: 

   Cannot locate API structure "ssl-module " The specified 
  procedure could not 
   
   be found: " 
   I didn't find the reason for this problem. The mod_ssl.so 
  is a win32 dll 
  and 

   has an exports the function ssl_module. 
   In the httpd.conf I defined "LoadModule ssl_module 
  modules/mod_ssl.so" 



   Please let me know if you know the cause for this problem. 




   Thanks 

   DILIP.R 





   Email: [EMAIL PROTECTED] 

_ 

   Get Your Private, Free E-mail from MSN Hotmail at 
  http://www.hotmail.com 
. 




   
  __ 
   Apache Interface to OpenSSL (mod_ssl) www.modssl.org User 
  Support Mailing 
   List [EMAIL PROTECTED] Automated List Manager 
  [EMAIL PROTECTED] 

   
   _ 
   
  Get Your Private, Free E-mail from MSN Hotmail at 
  http://www.hotmail.com 
   . 
   
   
   
   
  __ 

  Apache Interface to OpenSSL (mod_ssl) www.modssl.org User 
  Support Mailing 
  List [EMAIL PROTECTED] Automated List Manager 
  [EMAIL PROTECTED] 
   
  
  
  Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  __ 
  Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List 
  [EMAIL PROTECTED] Automated List Manager 
[EMAIL PROTECTED]


RE: Cannot load mod_ssl.so

2001-04-10 Thread D | L | P R

i'll tell u my dir structure 
root directory ; c:\program files\apache group\apache
openssl dir : c:\apache\openssl\bin;(2 dlls are present here)
i have set path as path=%path%;c:\apache\openssl\bin 
Hope i have made the path perfect now .
But still it syas "mod_ssl.so is not loaded -specific procedure not found"Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]


RE: Cannot load mod_ssl.so

2001-04-10 Thread Burtin, Stéphane



you 
must have openssl.exe in c:\apache\openssl\bin

  -Original Message-From: D | L | P R 
  [mailto:[EMAIL PROTECTED]]Sent: mardi, 10. avril 2001 
  13:12To: [EMAIL PROTECTED]Subject: RE: Cannot load 
  mod_ssl.so
  
  i'll tell u my dir structure 
  root directory ; c:\program files\apache 
  group\apache
  openssl dir : c:\apache\openssl\bin;(2 dlls are present here)
  i have set path as path=%path%;c:\apache\openssl\bin 
  Hope i have made the path perfect now .
  But still it syas "mod_ssl.so is not loaded -specific procedure not 
  found"
  
  Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
  __ 
  Apache Interface to OpenSSL (mod_ssl) www.modssl.org User Support Mailing List 
  [EMAIL PROTECTED] Automated List Manager 
[EMAIL PROTECTED]


Cannot load mod_ssl.so

2001-04-07 Thread Aviram Birenbaum

Hi
I'm having trouble with the installation of the
Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip
The file was downloaded from the contribution area.

When starting the apache I got a message:
Syntax error on line 205 of c:/java/tools/apache/conf/httpd.conf:
Cannot load c:/java/tools/apache/modules/mod_ssl.so into server: (126) The
specified module could not be found:  

I didn't find the reason for this problem. The mod_ssl.so is a win32 dll and
has an exports the function ssl_module.
In the httpd.conf I defined LoadModule ssl_module modules/mod_ssl.so

Please let me know if you know the cause for this problem.

Thanks

Aviram Birenbaum
Mobilitec, Inc. (www.mobilitec.com)

Email: [EMAIL PROTECTED]
Phone: +972-4-8551133 /111
Fax  : +972-4-8551112
Addr : Matam Building No. 5, POB 15049,
 Haifa, 31905, Israel

__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Cannot load mod_ssl.so

2001-04-07 Thread Aviram Birenbaum




Hi
I'm having trouble with the installation of the 
Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip
The file was downloaded from the contribution area.
When starting the apache I got a message:
"Syntax error on line 205 of c:/java/tools/apache/conf/httpd.conf:
Cannot load c:/java/tools/apache/modules/mod_ssl.so into server: (126) The 
specified module could not be found: "
I didn't find the reason for this problem. The mod_ssl.so is a win32 dll and 
has an exports the function ssl_module.
In the httpd.conf I defined "LoadModule ssl_module modules/mod_ssl.so"
Please let me know if you know the cause for this problem.
Thanks
Aviram Birenbaum
Email: [EMAIL PROTECTED] 


Cannot load mod_ssl.so

2001-04-04 Thread Aviram Birenbaum



Hi
I'm having trouble with the installation of the 
Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip
The file was downloaded from the contribution area.

When starting the apache I got a message:
"Syntax error on line 205 of c:/java/tools/apache/conf/httpd.conf:
Cannot load c:/java/tools/apache/modules/mod_ssl.so into server: (126) The 
specified module could not be found: "

I didn't find the reason for this problem. The mod_ssl.so is a win32 dll 
and has an exports the function ssl_module. 
Other *.so modules thatcome with the installation do not have any 
problem. 

In the httpd.conf I defined "LoadModule ssl_module 
modules/mod_ssl.so"

Please let me know if you know the cause for this problem.

Thanks
Aviram Birenbaum
Email: [EMAIL PROTECTED] 


Re: Cannot load mod_ssl.so

2001-04-04 Thread Deocs Postmaster


Hi
I'm having trouble with the installation of the 
Apache_1.3.19-Mod_SSL_2.8.2-OpenSSL_0.9.6-WIN32.zip
The file was downloaded from the contribution area.

When starting the apache I got a message:
"Syntax error on line 205 of c:/java/tools/apache/conf/httpd.conf:
Cannot load c:/java/tools/apache/modules/mod_ssl.so into server: (126) The 
specified module could not be found: "


I submitted this earlier for the "apache, modssl, win32" email thread,
but I haven't seen it back in email.  That thread is discussing error (182)
and may have a different underlying problem.I was able to create the
(126) error that you reported as shown below:

If I hide the SSL files from the execution path I get a similar
error(126) when I try to run Apache with SSL.  The SSL files are:
 ssleay32.dll
 libeay32.dll
 openssl.exe

So the problem may be with Apache loading files that support
mod_ssl.so.  It seems to run if it can find just "ssleay32.dll".
I don't know if it needs all three to run, but I normally have all
three in the execution path

Dave


__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



Where is mod_ssl.so?

2001-01-27 Thread matt mcparland

I'm trying to compile a DSO version of mod_ssl but can't find a mod_ssl.so
file to use as a module.  Perhaps my understanding of the terms is wrong,
but does a DSO version mean that a module (ie. mod_ssl.so) is created?

I used the '--enable-shared=ssl' directive when I ran the configure
script, was there something else I needed to do?  mod_ssl appears to have
been compiled properly, but not modularly.

Here's what I did on my RedHat 6.2 system with the Apache 1.3.12 sources
in /tmp/apache_1.3.12, openssl-0.9.6-1  and mod_ssl-2.6.6-1.3.12:

$ export SSL_BASE=SYSTEM
$ cd mod_ssl-2.6.6-1.3.12
$ ./configure --with-apache=/tmp/apache_1.3.12
$ cd /tmp/apache_1.3.12
$ ./configure --enable-module=ssl --prefix=/tmp/apache_1.3.12 \
--enable-shared=ssl
$ make
$ sudo make install

This put Apache in /usr/local/apache, the default, but there are no
LoadModule directives in the default httpd.conf so I'm assuming no modules
were created.  I'm sorry if this is a silly question, but I've read the
FAQ and other excellent documentation on the website and don't see
anything that helps me with this particular problem.

-- 
Matt McParland  [EMAIL PROTECTED]
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]



ldd output of mod_ssl.so

2000-11-10 Thread Austin Gonyou

Could someone provide me with this? I've got my modssl compiled in to my 
httpd.
Austin 
__
Apache Interface to OpenSSL (mod_ssl)   www.modssl.org
User Support Mailing List  [EMAIL PROTECTED]
Automated List Manager[EMAIL PROTECTED]