I'm having a heck of a time getting Coldfusion 8 Standard installed on a newly provisioned RHEL 5 server. I am installing as root.
On the initial start I get Coldfusion not started, will retry connector and then it counts down.
Contents of ConnectorInstall0.txt
Macromedia JRun 4.0 (Build 108673)
os.name: Linux
os.version: 2.6.18-8.1.14.el5_HPTRAID
os.arch: i386
platform: intel-linux
Could not connect to any JRun/ColdFusion servers on host localhost.
Possible causes:
o Server not running
-Start Macromedia JRun4 or ColdFusion 8 server
o Server running
-JNDI listen port in jndi.properties blocked by TCP/IP filtering or firewall
on server
-host restriction in security.properties blocking communication with server
My apache_connector.sh file contains (I had to manually add as post installation, this file was not correct based on prompted install.
#!/bin/sh
#
# 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
#
../../runtime/bin/wsconfig \
-server coldfusion \
-ws apache \
-dir /etc/httpd/conf \
-bin /usr/sbin/httpd \
-script /etc/rc.d/init.d/httpd \
-coldfusion
exit $#
I also notice that it doesn't update the httpd.conf file either. When I compared my other install that I'm migrating servers from, it updated the httpd.conf file with a number of items to include pointers to the wsconfig/1/ directory which is currently not populated on this machine.
Any help appreciated. Kind of surprised this isn't well documented somewhere for such as standard and supported platform.
Jim