Has anyone wanted to do this, and found a way around this insidious
installer?
(I'm running on WinNT 4.0 Server SP-5, if that makes a difference. I
suspect the same will happen in Win2K, since the Installer is integral
to that OS).
Thanks,
Michael Larson
Better answer.
copy httpd.conf to httpd_2.conf. Edit your conf, changing the name of the
PidFile directive, Ports directive, and log files. Then use
apache -k install -n servicename -f conf/httpd_2.conf
No need to pollute your machine with many complete trees :-)
"Michael Larson" <mla...@csub.edu> wrote in message news:3AE4BF7F...@csub.edu...
What a horrible thing to do! Why would you want to do this when a single
installation of apache can drive as many ports and domain names as you want.
I think you are far better off learning how to use the httpd.conf file to
do what you want to do.
cheers,
-Alan
There are several good examples of why you would _not_ use a single .conf.
One, if you want different security contexts on win32 (run service as user...)
then you need several servers/services running.
Second, if you are going to run both tomcat and jserv, you can't (not in a
single server) so you must use two different ones.
Third, if you want the 'fast server' to handle statics, and run another
process for the dodgie scripts on the backend, again this is a good choice.
So I'm presuming this user has some rather legit reasons for wanting more
than one server, it just doesn't take more than one apache 'installation'
to do this.
My reason, though not as lofty as those you mention, is fairly simple. I have written a web-based remote
admin (in Perl) for Apache, using a second Apache service to run it. I have found it necessary to have a
second server dedicated to this purpose, as it's features involve stopping, starting, and restarting the
service remotely. Seems fairly obvious in this case that it would be difficult to issue a start command
to a stopped service via the stopped service.
Thanks again for the advice. You have truly made my day!
--Mike