Skip to main content
Inspiring
January 10, 2014
Answered

CF10 on MAC OS X 10.9.1

  • January 10, 2014
  • 1 reply
  • 2967 views

Hi All,

I installed apache as:

http://coolestguidesontheplanet.com/install-configure-apache-mysql-php-phpmyadmin-osx-10-8-mountain-lion/

And CF10 as:

http://iknowkungfoo.com/blog/index.cfm/2013/2/27/Installing-ColdFusion-10-on-OSX-108-Mountain-Lion

In my other MAC I was able to fix my issues with my installation as:

http://forums.adobe.com/message/5671892#5671892#5671892

The Apache is running, aparently CF is running also:

$ /Applications/ColdFusion10/cfusion/bin/coldfusion restart

Restarting ColdFusion 10 server instance named cfusion ...

Stopping ColdFusion 10 server instance named cfusion, please wait

ColdFusion 10 server instance named cfusion has been stopped

Starting ColdFusion 10 server instance named cfusion ...

The ColdFusion 10 server instance named cfusion is starting up and will be available shortly.

======================================================================

ColdFusion 10 server instance named cfusion has been started.

ColdFusion 10 will write logs to /Applications/ColdFusion10/cfusion/logs/coldfusion-out.log

======================================================================

But I cannot see the admin page of CF.

https://localhost/~myUserName/CFIDE/Administrator/index.cfm

ERROR:

Unable to connect

Firefox can't establish a connection to the server at localhost.

I cannot open any cfm page content on my Site Folder.

What is missing? Why I cannot opent the CF admin page?

Please help.

Thanks

    This topic has been closed for replies.
    Correct answer vishu_13

    Yes the conector is there: [localhost:cfusion] Apache : /private/etc/apache2


    As you have applied the update 13 then you need to reconfigure the connector. So remove it and configure it once again. Check this : http://blogs.coldfusion.com/post.cfm/video-configuring-coldfusion-10-connector-with-apache-virtual-hosts

    1 reply

    vishu_13
    Inspiring
    January 10, 2014
    jfb00Author
    Inspiring
    January 10, 2014

    Thanks for you reply and help!

    I did the update. The apache is configure the same. Reboot the laptop.

    CF is running, I checked using terminar services.

    But I cannot login into the CF admin page.

    My test file shows the text <cfoutput>#now()#</cfoutput> instead of the time.

    Any ideas how to degug this?

    Best,

    vishu_13
    Inspiring
    January 10, 2014

    Enable the buit in port 8500 in the server.xml as mentioned below and then login to CF. See if that works or not?

    <!-- internal webserver start -->

        <Connector executor="tomcatThreadPool" maxThreads="50"

                   port="8500" protocol="org.apache.coyote.http11.Http11Protocol"

                   connectionTimeout="20000"

                   redirectPort="8445" />

        <!-- internal webserver end -->

    Once the internal port is enabled, restart CF 10 service, place the test.cfm which contains <cfoutput>#now()#</cfoutput> in wwwroot folder. Access this test.cfm like http://127.0.0.1:8500/test.cfm

    Thanks

    VJ