i have been trying all weekend to get cf mx to run on my apache server... I am running fedora core2. i am also running apache httpd-2.0.50.
my apache connector is not working:
Code:
Code:
#!/bin/sh
CF_DIR=../..
JAVA_EXECUTABLE=$CF_DIR/runtime/jre/bin/java
#
# Configure the Apache connector.
# -dir should be the *directory* which contains httpd.conf
# -bin should be the path to the apache *executable*
# -script should be the path to the script which is used to
# start/stop apache
#
$JAVA_EXECUTABLE -jar $CF_DIR/runtime/lib/wsconfig.jar \
-ws apache \
-dir /usr/local/apache2/conf \
-bin /usr/sbin/httpd \
-script /etc/init.d/httpd \
-coldfusion -v
exit $#
My httpd.conf had the following added to it:
Code:
Code:
# JRun Settings
LoadModule jrun_module /opt/coldfusionmx/runtime/lib/wsconfig/1/mod_jrun20.so
<IfModule mod_jrun20.c>
JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore /opt/coldfusionmx/runtime/lib/wsconfig/1/jrunserver.store
JRunConfig Bootstrap 127.0.0.1:51010
#JRunConfig Errorurl <optionally redirect to this URL on errors>
AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc
</IfModule>
i am lost, i ran the updater... i cannot get the cf server working, when i hit the admin page i see gibberish, the cf server is not exectuing the code....
thanks in advance...