Hi all,
Specs:
Debian/GNU Linux (slink)
Apache 1.3.4
Apache-JServ 1.02b
Goal:
Run one JVM in automatic mode for 'live' virtual web customers, and a
different one, with different zones, in manual mode for our developers
(so they (meaning, in this case, I) can start and stop the JVM as often
as they (meaning I) wish).
Problem:
apachectl configtest complains:
Syntax error on line 5 of /www/_shared/conf/live.jserv.conf:
ApJServManual: cannot be specified more than once per host
What I've Tried So Far:
I've created two sets of jserv.properties files and jserv.conf files:
######################################################################
# Apache JServ configuration for Customer Vwebs
#
ApJServManual off
ApJServDefaultProtocol ajpv11
ApJServDefaultPort 8007
ApJServSecretKey DISABLED
ApJServMountCopy off
ApJServLogFile /var/log/apache/apache-jserv.log
ApJServProperties /www/_shared/conf/live.jserv.properties
<Location /jserv/>
SetHandler jserv-status
order deny,allow
deny from all
allow from localhost 127.0.0.1
</Location>
######################################################################
# Apache JServ configuration for development JVM
#
ApJServManual on
ApJServDefaultProtocol ajpv11
ApJServDefaultPort 8008
ApJServSecretKey DISABLED
ApJServMountCopy off
ApJServLogFile /var/log/apache/apache-jserv.log
ApJServProperties /www/_shared/conf/development.jserv.properties
<Location /jserv/>
SetHandler jserv-status
order deny,allow
deny from all
allow from localhost 127.0.0.1
</Location>
Is the simple fix for this to just run them both in manual mode? Hint:
Everything has been working fine; I'm making this change so I have
something to ruthlessly abuse during development without upsetting
customer sites in any way.
Thanks,
James Carlson
----------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://www.working-dogs.com/>
Problems?: [EMAIL PROTECTED]