Skip to main content
September 24, 2012
Question

How do I get past this error?

  • September 24, 2012
  • 2 replies
  • 906 views

I am getting this error:

I'm using Apache 2.4.3. How come I'm getting this when configuring a web server?

    This topic has been closed for replies.

    2 replies

    Inspiring
    September 26, 2012

    Follow these steps:

    1.coldfusion installation fails with apache-ssl version.

    Because that install first a none ssl version like :

    httpd-2.2.21-win32-x86-no_

    ssl
    (use installation folderC:\Apache2)
    2.install coldfusion cf8/9
    3.install coldfusion update 8.01/9.01

    4.download httpd-2.2.21-win32-x86-ssl
    5.stop coldfusion - apache services
    6.Rename the first "apache2" folder to "Apache2_"
    7.Create a new Apache2 folder and extract there httpd-2.2.21-win32-x86-ssl
    8.Copy htdocs folder From "Apache2_" to Apache2 folder (replace existing one)
    9.Add following lines to the bottom of your new httpd file in conf folder:
    # JRun Settings
    LoadModule jrun_module "C:/your_coldfusion_root_folder/runtime/lib/wsconfig/1/mod_jrun22.so"
    <IfModule mod_jrun22.c>
        JRunConfig Verbose false
        JRunConfig Apialloc false
        JRunConfig Ignoresuffixmap false
        JRunConfig Serverstore "C:/your_coldfusion_root_folder/runtime/lib/wsconfig/1/jrunserver.store"
        JRunConfig Bootstrap 127.0.0.1:51800
        #JRunConfig Errorurl url <optionally redirect to this URL on errors>
        #JRunConfig ProxyRetryInterval 600 <number of seconds to wait before trying to reconnect to unreachable clustered server>
        #JRunConfig ConnectTimeout 15 <number of seconds to wait on a socket connect to a jrun server>
        #JRunConfig RecvTimeout 300 <number of seconds to wait on a socket receive to a jrun server>
        #JRunConfig SendTimeout 15 <number of seconds to wait on a socket send to a jrun server>
        AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
    </IfModule>
    <Files ~ ".hbmxml$">
    Order allow,deny
    Deny from all
    </Files>

    11.Make the other changes for using ssl in httpd file (you can find this in net)

    Inspiring
    September 24, 2012

    Are you gettng this during install, or when running wsconfig?

    If it's during install, try just configuring the install to run the inbuilt JWS web server, then configure your sites for Apache after install with wsconfig.  Not guaranteed to work, but it'll at least get you through the install process.

    If it's displaying when using wsconfig, I'm void of ideas, sorry.

    --

    Adam