You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Steve Bertrand <ia...@northnetworks.ca> on 2002/09/17 16:05:08 UTC

[users@httpd] Finding out apache's configure options...

-- Hi everyone!

Is there an easy way to tell what options were given to apache at the
time it was compiled?

I need to upgrade an apache server running 1.3.12 that was configured
with a multitude of options but I don't know which ones.

I fear that it is vulnerable to the recent SSL worm.

Tks,


Steve Bertrand, MCP CNA
Network Specialist

Northumberland Network Services
Tel/Fax: 905.885.4866
Cell: 905.377.5306
Email: steve@northnetworks.ca


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> 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


Re: [users@httpd] Finding out apache's configure options...

Posted by Steve Bertrand <ia...@northnetworks.ca>.
Tks much Kris.

Appears as though --recheck is an invalid option to configure.status on
1.3.xx.

Although I did read through config.layout and ran config.status.

Would I be correct in saying that the options in config.layout are what
I would be looking for?

Steve
> 



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> 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


Re: [users@httpd] Finding out apache's configure options...

Posted by Steve Bertrand <ia...@northnetworks.ca>.

I am reading config.status as opposed to .layout.  It appears as layout
is a generic file, whereas I have now verified on a server 1.3.26 that I
built myself that config.status does indeed carry the options that were
given to configure originally.

Thank you for all of your help!

-- 
Steve Bertrand, MCP CNA
Network Specialist

Northumberland Network Services
Tel/Fax: 905.885.4866
Cell: 905.377.5306
Email: steve@northnetworks.ca


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> 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


Re: [users@httpd] Finding out apache's configure options...

Posted by Kris Verbeeck <Kr...@ubizen.com>.
Steve Bertrand wrote:
> > > Is there an easy way to tell what options were given to apache at the
> > > time it was compiled?
> 
> > Not if you don't have the original source tree anymore (IMHO).
> 
> I do have the original source tree.  How can I extract this information
> from it?

If it is the configured source tree, then you should be able to run:

	./config.status --recheck

this will reconfigure the current tree, but will also display the
options that were used to configure the tree initially.

Example:

	$ ./config.status --recheck
	running /bin/bash configure  --prefix=/apache --disable-actions 
                --disable-asis --disable-auth --disable-autoindex 
                --enable-disk-cache --with-mod_jk --enable-ssl 
		...
        ...

I only tried this on an Apache 2.0 setup, I hope it also works on a
1.3 tree.

-- 
ir. Kris Verbeeck
Development Engineer

Ubizen - Ubicenter - Philipssite 5 - 3001 Leuven - Belgium
T:  +32 16 28 70 64
F:  +32 16 28 70 77

Ubizen - We Secure e-business - www.ubizen.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> 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


Re: [users@httpd] Finding out apache's configure options...

Posted by Steve Bertrand <ia...@northnetworks.ca>.
> > Is there an easy way to tell what options were given to apache at the
> > time it was compiled?

> Not if you don't have the original source tree anymore (IMHO).

I do have the original source tree.  How can I extract this information
from it?

Tks,

Steve



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> 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


Re: [users@httpd] Finding out apache's configure options...

Posted by Kris Verbeeck <Kr...@ubizen.com>.
Steve Bertrand wrote:
> Is there an easy way to tell what options were given to apache at the
> time it was compiled?
Not if you don't have the original source tree anymore (IMHO).

> I need to upgrade an apache server running 1.3.12 that was configured
> with a multitude of options but I don't know which ones.
> I fear that it is vulnerable to the recent SSL worm.
You can be sure of that.

-- 
ir. Kris Verbeeck
Development Engineer

Ubizen - Ubicenter - Philipssite 5 - 3001 Leuven - Belgium
T:  +32 16 28 70 64
F:  +32 16 28 70 77

Ubizen - We Secure e-business - www.ubizen.com

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> 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


Re: [users@httpd] Finding out apache's configure options...

Posted by Jacob Coby <jc...@listingbook.com>.
> -- Hi everyone!
>
> Is there an easy way to tell what options were given to apache at the
> time it was compiled?
>
> I need to upgrade an apache server running 1.3.12 that was configured
> with a multitude of options but I don't know which ones.
>
> I fear that it is vulnerable to the recent SSL worm.

httpd -V

Easiest way to see if you are vulnerable is to check what netcraft says
about your site.  Or to issue the same invalid HTTP GET string that the worm
sends over a telnet connection.

-Jacob
http://www.listingbook.com


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> 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