Upgrade ?
am 24.06.2002 17:18:03 von RON MCKEEVER
Hello,
Im a little confused on how to upgrade my current mod_ssl-2.8.7-1.3.23, to
mod_ssl-2.8.10-1.3.26.
When I untar the new apache1.3.26 it is in it own dir.. So how do I upgrade
1.3.23? When I run the configure statement in the mod_ssl-2.8.10 dir I cant
state --with-apache="1.3.23", I need to state the new apache dir, right??
Am I missing something? If I am maybe someone can clarify the upgrade procees
to me or point me to a doc that explains this?
To me it sounds like you have to install mod_ssl-2.8.10-1.3.26, and move all
your stuff form the old apache dir's to the new???
Thanks for your time up front.
ron
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Upgrade ?
am 24.06.2002 17:32:06 von Cliff Woolley
On Mon, 24 Jun 2002, RON MCKEEVER wrote:
> Im a little confused on how to upgrade my current mod_ssl-2.8.7-1.3.23, to
> mod_ssl-2.8.10-1.3.26.
> When I untar the new apache1.3.26 it is in it own dir.. So how do I upgrade
> 1.3.23? When I run the configure statement in the mod_ssl-2.8.10 dir I cant
> state --with-apache="1.3.23", I need to state the new apache dir, right??
Right... you give mod_ssl-2.8.10 the Apache 1.3.26 *source* directory for
its --with-apache= argument. Then when you configure apache, tell it to
*install* to the same location that 1.3.23 is currently installed using
--prefix= (eg /usr/local/apache) and use the same directory structure
(using --with-layout= ) that you used before, if any. Then when you run
'make install' from the Apache 1.3.26 source directory, it will overwrite
your 1.3.23 installation.
That should be it.
--Cliff
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Upgrade ?
am 24.06.2002 17:50:10 von Thomas Binder
Hi!
On Mon, Jun 24, 2002 at 11:32:06AM -0400, Cliff Woolley wrote:
> Then when you run 'make install' from the Apache 1.3.26 source
> directory, it will overwrite your 1.3.23 installation.
Just in case anyone wonders: it will NOT overwrite the config
files of the 1.3.23 installation.
Ciao
Thomas
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Upgrade ?
am 24.06.2002 21:42:15 von RON MCKEEVER
Hi Mr Woolley,
Thanks, for the email. That REALLY helped me to get my mod_ssl-2.8.7-1.3.23
upgraded to mod_ssl-2.8.10-1.3.26.
aca# pwd
opt/apache/bin
aca# ./apachectl startssl
Apache/1.3.26 mod_ssl/2.8.10 (Pass Phrase Dialog)
I was wondering is there a web page at apache/or modssl site that explains the
upgrade process?
This ? might not be for you or this group but I guess I'll ask anyway.
When I use my phpinfo page, to see config info it shows that apache is :
Apache Version Apache/1.3.23
but If I look a little further down on the phpinfo page I see the correct
info:
["SERVER_SIGNATURE"]
Apache/1.3.26 Server at aca.fff.com Port
443
["SERVER_SOFTWARE"] Apache/1.3.26 (Unix) PHP/4.1.2 mod_ssl/2.8.10
OpenSSL/0.9.6 mod_perl/1.26
I have rebooted my system and still that one line in php shows the wrong
version? Any Ideas?
Thanks Again,
Ron
On Mon, 24 Jun 2002 11:32:06 -0400 (EDT) Cliff Woolley
wrote:
On Mon, 24 Jun 2002, RON MCKEEVER wrote:
> Im a little confused on how to upgrade my current mod_ssl-2.8.7-1.3.23, to
> mod_ssl-2.8.10-1.3.26.
> When I untar the new apache1.3.26 it is in it own dir.. So how do I upgrade
> 1.3.23? When I run the configure statement in the mod_ssl-2.8.10 dir I cant
> state --with-apache="1.3.23", I need to state the new apache dir, right??
Right... you give mod_ssl-2.8.10 the Apache 1.3.26 *source* directory for
its --with-apache= argument. Then when you configure apache, tell it to
*install* to the same location that 1.3.23 is currently installed using
--prefix= (eg /usr/local/apache) and use the same directory structure
(using --with-layout= ) that you used before, if any. Then when you run
'make install' from the Apache 1.3.26 source directory, it will overwrite
your 1.3.23 installation.
That should be it.
--Cliff
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
Re: Upgrade ?
am 24.06.2002 21:55:35 von Cliff Woolley
On Mon, 24 Jun 2002, Thomas Binder wrote:
> > Then when you run 'make install' from the Apache 1.3.26 source
> > directory, it will overwrite your 1.3.23 installation.
>
> Just in case anyone wonders: it will NOT overwrite the config
> files of the 1.3.23 installation.
Oh right... meant to point that out. Thanks. :)
--Cliff
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: Upgrade ?
am 25.06.2002 19:55:39 von keith
Ron,
I have had that same issue when I have upgraded apache. I never noticed that it caused a problem, but it certainly bothered me that php did not know which version of apache was running. I fixed it by recompiling php (including a make clean) and restarting apache.
Keith Hunt 330.972.7968 keith@uakron.edu
Internet & Server Systems
The University of Akron
> -----Original Message-----
> From: RON MCKEEVER [mailto:rmckeever@earthlink.net]
> Sent: Monday, June 24, 2002 3:42 PM
> To: modssl-users@modssl.org
> Subject: Re: Upgrade ?
>
>
> Hi Mr Woolley,
>
> Thanks, for the email. That REALLY helped me to get my
> mod_ssl-2.8.7-1.3.23
> upgraded to mod_ssl-2.8.10-1.3.26.
> aca# pwd
> opt/apache/bin
> aca# ./apachectl startssl
> Apache/1.3.26 mod_ssl/2.8.10 (Pass Phrase Dialog)
>
>
> I was wondering is there a web page at apache/or modssl site
> that explains the
> upgrade process?
>
> This ? might not be for you or this group but I guess I'll
> ask anyway.
>
> When I use my phpinfo page, to see config info it shows that
> apache is :
> Apache Version Apache/1.3.23
>
> but If I look a little further down on the phpinfo page I see
> the correct
> info:
>
> ["SERVER_SIGNATURE"]
Apache/1.3.26 Server at aca.fff.com Port
> 443
> ["SERVER_SOFTWARE"] Apache/1.3.26 (Unix) PHP/4.1.2 mod_ssl/2.8.10
> OpenSSL/0.9.6 mod_perl/1.26
>
> I have rebooted my system and still that one line in php
> shows the wrong
> version? Any Ideas?
>
> Thanks Again,
> Ron
>
>
> On Mon, 24 Jun 2002 11:32:06 -0400 (EDT) Cliff Woolley
>
> wrote:
>
> On Mon, 24 Jun 2002, RON MCKEEVER wrote:
>
> > Im a little confused on how to upgrade my current
> mod_ssl-2.8.7-1.3.23, to
> > mod_ssl-2.8.10-1.3.26.
> > When I untar the new apache1.3.26 it is in it own dir.. So
> how do I upgrade
> > 1.3.23? When I run the configure statement in the
> mod_ssl-2.8.10 dir I cant
> > state --with-apache="1.3.23", I need to state the new
> apache dir, right??
>
> Right... you give mod_ssl-2.8.10 the Apache 1.3.26 *source*
> directory for
> its --with-apache= argument. Then when you configure apache,
> tell it to
> *install* to the same location that 1.3.23 is currently
> installed using
> --prefix= (eg /usr/local/apache) and use the same directory structure
> (using --with-layout= ) that you used before, if any. Then
> when you run
> 'make install' from the Apache 1.3.26 source directory, it
> will overwrite
> your 1.3.23 installation.
>
> That should be it.
>
> --Cliff
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
> ____________________________________________________________ __________
> Apache Interface to OpenSSL (mod_ssl) www.modssl.org
> User Support Mailing List modssl-users@modssl.org
> Automated List Manager majordomo@modssl.org
>
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: Upgrade ?
am 25.06.2002 20:07:38 von Henning Sittler
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C21C73.30D5A600
Content-Type: text/plain;
charset="iso-8859-1"
Recompiling PHP is really the only accurate solution to that one line from
phpinfo():
Apache Version Apache/1.3.23
is from the last (clean?) compile of PHP, and does not reflect any chages or
updates made to Apache since then. However, the SERVER_SIGNATURE env var
shown in phpinfo() is up to date and accurate, because it's directly from
the current Apache.
Henning Sittler
www.inscriber.com
-----Original Message-----
From: Hunt,Keith A [mailto:keith@uakron.edu]
Sent: Tuesday, June 25, 2002 1:56 PM
To: modssl-users@modssl.org
Subject: RE: Upgrade ?
Ron,
I have had that same issue when I have upgraded apache. I never noticed
that it caused a problem, but it certainly bothered me that php did not know
which version of apache was running. I fixed it by recompiling php
(including a make clean) and restarting apache.
Keith Hunt 330.972.7968 keith@uakron.edu
Internet & Server Systems
The University of Akron
>
> When I use my phpinfo page, to see config info it shows that
> apache is :
> Apache Version Apache/1.3.23
------_=_NextPart_001_01C21C73.30D5A600
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
charset=3Diso-8859-1">
5.5.2653.12">
RE: Upgrade ?
Recompiling PHP is really the only accurate solution =
to that one line from phpinfo():
Apache Version Apache/1.3.23 =
is from the last (clean?) compile of PHP, and does =
not reflect any chages or updates made to Apache since then. =
However, the SERVER_SIGNATURE env var shown in phpinfo() is up to date =
and accurate, because it's directly from the current Apache.
Henning Sittler
www.inscriber.com
-----Original Message-----
From: Hunt,Keith A [
HREF=3D"mailto:keith@uakron.edu">mailto:keith@uakron.edu]
Sent: Tuesday, June 25, 2002 1:56 PM
To: modssl-users@modssl.org
Subject: RE: Upgrade ?
Ron,
I have had that same issue when I have upgraded =
apache. I never noticed that it caused a problem, but it =
certainly bothered me that php did not know which version of apache was =
running. I fixed it by recompiling php (including a make clean) =
and restarting apache.
Keith Hunt 330.972.7968 =
keith@uakron.edu
Internet & Server Systems
The University of Akron
>
> When I use my phpinfo page, to see config info =
it shows that
> apache is :
> Apache Version Apache/1.3.23 =
------_=_NextPart_001_01C21C73.30D5A600--
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: Upgrade ?
am 25.06.2002 20:41:28 von RON MCKEEVER
Thanks Keith and Henning....
It makes sense to recompile PHP. I just wish it was as simple as editing a
file. Oh well....
Thanks again
Ron
On Tue, 25 Jun 2002 14:07:38 -0400 Henning Sittler
wrote:
RE: Upgrade ?
Recompiling PHP is really the only accurate solution to that one line from
phpinfo():
Apache Version Apache/1.3.23
is from the last (clean?) compile of PHP, and does not reflect any chages or
updates made to Apache since then. However, the SERVER_SIGNATURE env var
shown in phpinfo() is up to date and accurate, because it's directly from the
current Apache.
Henning Sittler
www.inscriber.com
-----Original Message-----
From: Hunt,Keith A [
HREF="mailto:keith@uakron.edu">mailto:keith@uakron.edu]
Sent: Tuesday, June 25, 2002 1:56 PM
To: modssl-users@modssl.org
Subject: RE: Upgrade ?
Ron,
I have had that same issue when I have upgraded apache. I never noticed that
it caused a problem, but it certainly bothered me that php did not know which
version of apache was running. I fixed it by recompiling php (including a
make clean) and restarting apache.
Keith Hunt 330.972.7968 keith@uakron.edu
Internet & Server Systems
The University of Akron
>
> When I use my phpinfo page, to see config info it shows that
> apache is :
> Apache Version Apache/1.3.23
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org
RE: Upgrade ?
am 25.06.2002 20:50:27 von Henning Sittler
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C21C79.2BFDF780
Content-Type: text/plain;
charset="iso-8859-1"
Not to keep on going about PHP on this list, but I think there is a text
file kept by php which contains the value of that line about Apache, and the
php compile info. Which also means that technically you can simply edit
that text file to change a *displayed* value for the compile info shown in
phpinfo(), you'd just have to find that file first.
Henning Sittler
www.inscriber.com
-----Original Message-----
From: RON MCKEEVER [mailto:rmckeever@earthlink.net]
Sent: Tuesday, June 25, 2002 2:41 PM
To: modssl-users@modssl.org
Subject: RE: Upgrade ?
Thanks Keith and Henning....
It makes sense to recompile PHP. I just wish it was as simple as editing a
file. Oh well....
Thanks again
Ron
------_=_NextPart_001_01C21C79.2BFDF780
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
charset=3Diso-8859-1">
5.5.2653.12">
RE: Upgrade ?
Not to keep on going about PHP on this list, but I =
think there is a text file kept by php which contains the value of that =
line about Apache, and the php compile info. Which also means =
that technically you can simply edit that text file to change a =
*displayed* value for the compile info shown in phpinfo(), you'd just =
have to find that file first.
Henning Sittler
www.inscriber.com
-----Original Message-----
From: RON MCKEEVER [
HREF=3D"mailto:rmckeever@earthlink.net">mailto:rmckeever@ear thlink.net=
A>]
Sent: Tuesday, June 25, 2002 2:41 PM
To: modssl-users@modssl.org
Subject: RE: Upgrade ?
Thanks Keith and Henning....
It makes sense to recompile PHP. I just wish it was =
as simple as editing a
file. Oh well....
Thanks again
Ron
------_=_NextPart_001_01C21C79.2BFDF780--
____________________________________________________________ __________
Apache Interface to OpenSSL (mod_ssl) www.modssl.org
User Support Mailing List modssl-users@modssl.org
Automated List Manager majordomo@modssl.org