• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

CF10 on MAC OS X 10.9.1

Advisor ,
Jan 09, 2014 Jan 09, 2014

Copy link to clipboard

Copied

Hi All,

I installed apache as:

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

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

Views

2.3K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Enthusiast , Jan 10, 2014 Jan 10, 2014

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

Votes

Translate

Translate
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

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,

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

You rock!

Now i am able to get into the CF admin page.

I know that MAC have two webserver folders. I am using the /Users/username/Sites/

When I do: http://127.0.0.1/~johnnyballadares/index.htm, it works fine

When I do: http://127.0.0.1:8500/~johnnyballadares/index.htm, I got error 404.

When I do: http://127.0.0.1:8500/~johnnyballadares/index.cfm, I got File not found.

When I do: http://127.0.0.1:8500/index.cfm, I got File not found.

So coldfusion is up but the cfm pages are not working???

I appreciate your help.

Best,


Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

inside CF10 wwwroot folder place a test.cfm (<cfoutput> Hello CF 10 on Mac </cfoutput>) and then browse it as http://127.0.0.1:8500/test.cfm

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

That works, but how can I use cfm files in my /Users/username/Sites/ webroot folder?


Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

What is working now is the CF 10 webroot. Now you need to configure CF 10 with any webserver (I beleive it is Apache). Launch the wsconfig.exe and see that is there any connector or not.

Thanks

VJ

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

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-h...

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

I got permission denied. I stop CF and apache server but still the same issue.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

I was able to delete the connection using terminal with admin rights.

Now it is asking for

AppServer Host = localhost

AppServer Cluster = ^

Web Server = Apache

Configuration Directory = /private/etc/apache2

Do I need to setup anything else?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advisor ,
Jan 10, 2014 Jan 10, 2014

Copy link to clipboard

Copied

LATEST

It works... thanks again!

Best,

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation