> We need to run both JRun 2.3.3 and CFMX (JRun4) off the same
> apache instance but there's a module conflict (same name).
> Anyway around this without having to recompile 2.3.3 ?
> (Since no source for MX module)
When you say the same Apache instance, do you mean the same virtual server?
If so, I'm not sure how that would work, even if the modules had different
names.
However, you should be able to run modules with the same name in separate
virtual servers. For example, on Apache 2.0.39 for Windows, I've got
something like this at the bottom of my httpd.conf:
<VirtualHost mycf5.figleaf.com>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot "D:/Inetpub/cf5/"
ErrorLog logs/mycf5.figleaf.com.log
TransferLog logs/mycf5.figleaf.com-access.log
LoadModule coldfusion_module modules/mod_coldfusion.so
AddHandler type-coldfusion cfm dbm
</VirtualHost>
<VirtualHost mycfmx.figleaf.com>
ServerAdmin [EMAIL PROTECTED]
DocumentRoot "D:/Inetpub/cfmx/"
ErrorLog logs/mycfmx.figleaf.com.log
TransferLog logs/mycfmx.figleaf.com-access.log
# JRun Settings
LoadModule jrun_module "C:/CFusionMX/runtime/lib/wsconfig/2/mod_jrun20.so"
<IfModule mod_jrun20.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore
"C:/CFusionMX/runtime/lib/wsconfig/2/jrunserver.store"
JRunConfig Bootstrap 127.0.0.1:51010
#JRunConfig Errorurl <optionally redirect to this URL on errors>
AddHandler jrun-handler .jsp .jws
</IfModule>
</VirtualHost>
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
______________________________________________________________________
This list and all House of Fusion resources hosted by CFHosting.com. The place for
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists