When are blogs deleted from the list of the blogs I've read?
Could I have some help on installing Apache SSL
Hello Guest
  
  • Login
• Register…
• Start blog
  • Who, Where, When
• What is interesting here?
• Duels
  • Polls
• Avatars
• Interests
  • Cities and Countries
• Random blog
• Users search
  • Search
• Games
• Tests
• QAIX
  • Сообщества
• Talxy Chat
• Horoscope
• Online
 
Register!

QAIX > Apache HTTP Server > Could I have some help on installing Apache SSL 18 September 2009 19:22:21

  Top users: 
  Recent blog posts: 
  They have birthday today: 
  Forums:   
  Discuss: 
  Recent forum topics: 
  Recent forum comments:
  Модератор:

Could I have some help on installing Apache SSL

Charlene Lee 20 November 2006 06:48:30
 Dear Apache Groups,


Is it possible to get some help on how to install Apache with SSL version 2.2.3. It is said that with this version of Apache it already comes with SSL.

What are the steps to follow to install, compile, configure and enable SSL with this version?

This is the error I get when I tried to install and configure Apache with SSL version 2.2.3:

It saids that it cannot find the Toolkit .
configure: error: ... No recognized SSL/TLS toolkit detected.

The steps I took to configure was I added the --enable-ssl command to the configuration step:

./configure --prefix=/home/http­d --enable-ssl --enable-module=so


Yours Sincerely,


Charlene L.


Send instant messages to your online friends http://au.messenger­.yahoo.com
Add comment
Sander Temme 20 November 2006 07:05:03 permanent link ]
 Hey Charlene,

On Nov 19, 2006, at 7:48 PM, charlene lee wrote:
It saids that it cannot find the Toolkit .> configure: error: ... No recognized SSL/TLS toolkit detected.

There are two possibilities: your installation is lacking OpenSSL or,
if you are running Linux, it's lacking the openssl-dev package.

What we ship is mod_ssl, the module that wraps the HTTP protocol in
SSL or TLS encryption. We don't ship the SSL library itself, but
instead require that one is installed. We support OpenSSL and (I
think, but haven't tried) RSA ssl-c.

You don't tell us which platform you are using, but on Linux packages
tend to be split up into a user part (openssl in our case) and a
developer part. You need both and configure will fail with the above
message if it can't find the -dev package. For instance, on Ubuntu
you'll want

libssl
libssl-dev
openssl

installed before you build Apache.
The steps I took to configure was I added the --enable-ssl command > to the configuration step:>
./configure --prefix=/home/http­d --enable-ssl --enable-module=so

That's spot on. If you have your OpenSSL installation installed
somewhere on your system but not in the default /usr or /usr/local or
so, you should point to it using --with-ssl=/path/to­/your/openssl .

S.

--
sctemme@apache.org http://www.temme.ne­t/sander/
PGP FP: 51B4 8727 466A 0BC3 69F4 B7B8 B2BE BC40 1529 24AF


Add comment
Charlene Lee 23 November 2006 12:58:49 permanent link ]
 Your guess is absolutely correct! I am running Linux Slackware 10.2.
Where could I get hold of a copy of "openssl-dev package" and the "SSL library" please? Could I find them on the www.openssl.org website?

You mentioned "Ubuntu". Do you mean www.ubuntu.com?

Also if I want to implement digest authentication after installing Apache.

Is it necessary to include the "--enable-auth-dige­st" directive during the Apache configuration process?

e.g.

./configure --enable-auth-diges­t --prefix=/home/http­d --enable-ssl --enable-module=so

What if I failed to include the "--enable-auth-dige­st" directive during configuration process? Will it be still possible to implement digest authentication after the installation?

If I go to the ubunto website and found the files indicated by you:

libssl
libssl-dev
openssl

Are they compatible with Linux Slackware 10.2?
Does it have a compatibility problem with any particular version of Linux, Apache, PHP and mySQL?

Do you by chance happen to know which version of PHP works best with which version of MySQL?

Thanks in Advance.

Sander Temme <sctemme@apache.org­> wrote:
Hey Charlene,

On Nov 19, 2006, at 7:48 PM, charlene lee wrote:
It saids that it cannot find the Toolkit .> configure: error: ... No recognized SSL/TLS toolkit detected.

There are two possibilities: your installation is lacking OpenSSL or,
if you are running Linux, it's lacking the openssl-dev package.

What we ship is mod_ssl, the module that wraps the HTTP protocol in
SSL or TLS encryption. We don't ship the SSL library itself, but
instead require that one is installed. We support OpenSSL and (I
think, but haven't tried) RSA ssl-c.

You don't tell us which platform you are using, but on Linux packages
tend to be split up into a user part (openssl in our case) and a
developer part. You need both and configure will fail with the above
message if it can't find the -dev package. For instance, on Ubuntu
you'll want

libssl
libssl-dev
openssl

installed before you build Apache.
The steps I took to configure was I added the --enable-ssl command > to the configuration step:>
./configure --prefix=/home/http­d --enable-ssl --enable-module=so

That's spot on. If you have your OpenSSL installation installed
somewhere on your system but not in the default /usr or /usr/local or
so, you should point to it using --with-ssl=/path/to­/your/openssl .

S.

--
sctemme@apache.org http://www.temme.ne­t/sander/
PGP FP: 51B4 8727 466A 0BC3 69F4 B7B8 B2BE BC40 1529 24AF




Send instant messages to your online friends http://au.messenger­.yahoo.com
Add comment
Charlene Lee 23 November 2006 12:59:03 permanent link ]
 Your guess is absolutely correct! I am running Linux Slackware 10.2.
Where could I get hold of a copy of "openssl-dev package" and the "SSL library" please? Could I find them on the www.openssl.org website?

You mentioned "Ubuntu". Do you mean www.ubuntu.com?

Also if I want to implement digest authentication after installing Apache.

Is it necessary to include the "--enable-auth-dige­st" directive during the Apache configuration process?

e.g.

./configure --enable-auth-diges­t --prefix=/home/http­d --enable-ssl --enable-module=so

What if I failed to include the "--enable-auth-dige­st" directive during configuration process? Will it be still possible to implement digest authentication after the installation?

If I go to the ubunto website and found the files indicated by you:

libssl
libssl-dev
openssl

Are they compatible with Linux Slackware 10.2?
Does it have a compatibility problem with any particular version of Linux, Apache, PHP and mySQL?

Do you by chance happen to know which version of PHP works best with which version of MySQL?

Thanks in Advance.

Sander Temme <sctemme@apache.org­> wrote:
Hey Charlene,

On Nov 19, 2006, at 7:48 PM, charlene lee wrote:
It saids that it cannot find the Toolkit .> configure: error: ... No recognized SSL/TLS toolkit detected.

There are two possibilities: your installation is lacking OpenSSL or,
if you are running Linux, it's lacking the openssl-dev package.

What we ship is mod_ssl, the module that wraps the HTTP protocol in
SSL or TLS encryption. We don't ship the SSL library itself, but
instead require that one is installed. We support OpenSSL and (I
think, but haven't tried) RSA ssl-c.

You don't tell us which platform you are using, but on Linux packages
tend to be split up into a user part (openssl in our case) and a
developer part. You need both and configure will fail with the above
message if it can't find the -dev package. For instance, on Ubuntu
you'll want

libssl
libssl-dev
openssl

installed before you build Apache.
The steps I took to configure was I added the --enable-ssl command > to the configuration step:>
./configure --prefix=/home/http­d --enable-ssl --enable-module=so

That's spot on. If you have your OpenSSL installation installed
somewhere on your system but not in the default /usr or /usr/local or
so, you should point to it using --with-ssl=/path/to­/your/openssl .

S.

--
sctemme@apache.org http://www.temme.ne­t/sander/
PGP FP: 51B4 8727 466A 0BC3 69F4 B7B8 B2BE BC40 1529 24AF




Send instant messages to your online friends http://au.messenger­.yahoo.com
Add comment
Guest 15 May 2009 07:17:58 permanent link ]
 Thank lot....
It is working good.
I done one mistake path.
i not mansion the correct path..i saw ur message i got idea. i give correct path (with-ssl=/usr/loca­l/openssl) now working co
Add comment
Guest 30 June 2009 12:42:32 permanent link ]
 After installation of open ssl,

Iam running the below commond, getting belo error:

Could you plese hep on this:

adding "-I$(top_srcdir)/mo­dules/proxy/../gener­ators" to INCLUDES
checking whether to enable mod_ssl... checking dependencies
checking for SSL/TLS toolkit base... /gh/var/application­s/WLS/openssl-0.9.8k­
adding "-I/gh/var/applicat­ions/WLS/openssl-0.9­.8k/include" to CPPFLAGS
adding "-I/gh/var/applicat­ions/WLS/openssl-0.9­.8k/include" to INCLUDES
adding "-L/gh/var/applicat­ions/WLS/openssl-0.9­.8k/lib" to LDFLAGS
checking for OpenSSL version... checking openssl/opensslv.h usability... yes
checking openssl/opensslv.h presence... yes
checking for openssl/opensslv.h.­.. yes
checking openssl/ssl.h usability... yes
checking openssl/ssl.h presence... yes
checking for openssl/ssl.h... yes
OK
forcing SSL_LIBS to "-lssl -lcrypto -lrt -lcrypt -lpthread -ldl"
adding "-lssl" to LIBS
adding "-lcrypto" to LIBS
adding "-lrt" to LIBS
adding "-lcrypt" to LIBS
adding "-lpthread" to LIBS
adding "-ldl" to LIBS
checking openssl/engine.h usability... yes
checking openssl/engine.h presence... yes
checking for openssl/engine.h...­ yes
checking for SSLeay_version... no
checking for SSL_CTX_new... no
checking for ENGINE_init... no
checking for ENGINE_load_builtin­_engines... no
checking for SSL_set_cert_store.­.. no
configure: error: ... Error, SSL/TLS libraries were missing or unusable
Add comment
Guest 18 September 2009 19:22:21 permanent link ]
 Install these before building apache:

libssl
libssl-dev
openssl

Regards,
Andrew
Add comment
 

Add new comment

As:
Login:  Password:  
 
 
  
 
Пожалуйста, относитесь к собеседникам уважительно, не используйте нецензурные слова, не злоупотребляйте заглавными буквами, не публикуйте рекламу и объявления о купле/продаже, а также материалы нарушающие сетевой этикет или законы РФ. Ваш ip-адрес записывается.


QAIX > Apache HTTP Server > Could I have some help on installing Apache SSL 18 September 2009 19:22:21

see also:
[c++]- difference between friend and…
Re: is it possible for C++
2^pi...help me
pass tests:
A ih reakziya na tvoe poyavlenie -
see also:

  Copyright © 2001—2010 QAIX
Идея: Монашёв Михаил.
Авторами текстов, изображений и видео, размещённых на этой странице, являются пользователи сайта.
See Help and FAQ in the community support.qaix.com.
Write in the community about the bugs you have noticedbugs.qaix.com.
Write your offers and comments in the communities suggest.qaix.com.
Information for parents.
Пишите нам на .
If you would like to report an abuse of our service, such as a spam message, please .
Если Вы хотите пожаловаться на содержимое этой страницы, пожалуйста .