Welcome to Dream.In.Code
Getting Help is Easy!

Join 117,337 Programmers for FREE! Ask your question and get quick answers from experts. There are 2,143 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



can't connect to localhost:8500

 
Reply to this topicStart new topic

can't connect to localhost:8500, downloaded ColdFusion 8 the developer edition...

parenteau
post 13 Feb, 2008 - 04:31 PM
Post #1


New D.I.C Head

Group Icon
Joined: 12 Feb, 2008
Posts: 28



Dream Kudos: 50
My Contributions


I can't read .cfm files in my browser locally cause it doesn't seem to be using ColdFusion....
I have googled all over and can't seem to figure out what the problem is...
does anyone here know what to do?
User is offlineProfile CardPM

Go to the top of the page


Nykc
post 13 Feb, 2008 - 06:13 PM
Post #2


sudo rm -R /

Group Icon
Joined: 14 Sep, 2007
Posts: 3,309



Thanked 7 times

Dream Kudos: 275
My Contributions


Do you have a local environment setup?

The CF docs or any of the CF books will cover these in great depth.


This post has been edited by nykc: 13 Feb, 2008 - 06:16 PM
User is offlineProfile CardPM

Go to the top of the page

parenteau
post 13 Feb, 2008 - 07:56 PM
Post #3


New D.I.C Head

Group Icon
Joined: 12 Feb, 2008
Posts: 28



Dream Kudos: 50
My Contributions


QUOTE(nykc @ 13 Feb, 2008 - 06:13 PM) *

Do you have a local environment setup?

The CF docs or any of the CF books will cover these in great depth.


yes... it installed and then stopped at the second part of the installation. I uninstalled and reinstalled....
it said something about manually configuring the web servers... they only talk about doing that in Windows and Unix on the Adobe site....
or at least that was all I could find. I have now been trying to test everything on a directory I setup on the remote server...
a bit more of a hassle but at least I am getting the job done.

Thanks.
User is offlineProfile CardPM

Go to the top of the page

Nykc
post 13 Feb, 2008 - 08:12 PM
Post #4


sudo rm -R /

Group Icon
Joined: 14 Sep, 2007
Posts: 3,309



Thanked 7 times

Dream Kudos: 275
My Contributions


Update this post sometime tommorow. I can do more research on it from work since we use ColdFusion servers. Of course unless you figure it out or someone else is able to help.

Thanks,
User is offlineProfile CardPM

Go to the top of the page

parenteau
post 14 Feb, 2008 - 04:30 PM
Post #5


New D.I.C Head

Group Icon
Joined: 12 Feb, 2008
Posts: 28



Dream Kudos: 50
My Contributions


QUOTE(nykc @ 13 Feb, 2008 - 08:12 PM) *

Update this post sometime tommorow. I can do more research on it from work since we use ColdFusion servers. Of course unless you figure it out or someone else is able to help.

Thanks,


Figured I would give this another shot to see if anybody has had this problem before....
User is offlineProfile CardPM

Go to the top of the page

skyhawk133
post 14 Feb, 2008 - 04:33 PM
Post #6


Head DIC Head

Group Icon
Joined: 17 Mar, 2001
Posts: 14,586



Thanked 39 times

Dream Kudos: 1650

Expert In: Web Development

My Contributions


Wait, you say they only talk about configuring the web server on windows and unix.... are you using another platform?


CF 8 should have a built in web server option that let's you run the developer edition locally without IIS or Apache. Were you ever prompted for that option?
User is offlineProfile CardPM

Go to the top of the page

parenteau
post 14 Feb, 2008 - 04:53 PM
Post #7


New D.I.C Head

Group Icon
Joined: 12 Feb, 2008
Posts: 28



Dream Kudos: 50
My Contributions


QUOTE(skyhawk133 @ 14 Feb, 2008 - 04:33 PM) *

Wait, you say they only talk about configuring the web server on windows and unix.... are you using another platform?


CF 8 should have a built in web server option that let's you run the developer edition locally without IIS or Apache. Were you ever prompted for that option?



I am on a mac running OS X. I loaded the developer edition after watching a tutorial very similar to the one you posted... but it was for a mac. Anyway I installed it to use as a solo server or local... the first option on the three I could check. I put in the passwords and such to enable RDS and for the Administrator... and then, it installed. It stopped and had the done button available, no previous button was accessible and I couldn't check the box to load the admin panel... also it didn't auto start. I manually started CF and it said it was running, but I still could not connect to localhost:8500 .... the installer left me with a message to manually configure web servers... I am lost at this point cause when I search Adobe Knowlage base, live docs, and etc... I have not been able to solve this one. Whoooo... the sweat is dripping from my brow after that one!
User is offlineProfile CardPM

Go to the top of the page

skyhawk133
post 14 Feb, 2008 - 04:54 PM
Post #8


Head DIC Head

Group Icon
Joined: 17 Mar, 2001
Posts: 14,586



Thanked 39 times

Dream Kudos: 1650

Expert In: Web Development

My Contributions


Man, I wish I had more experience with CF on a Mac. Dang.


User is offlineProfile CardPM

Go to the top of the page

parenteau
post 15 Feb, 2008 - 06:27 PM
Post #9


New D.I.C Head

Group Icon
Joined: 12 Feb, 2008
Posts: 28



Dream Kudos: 50
My Contributions


OH Yeah!!!! It turns out that Adobe hasn't caught up with Leopard. When configuring the install of Coldfusion 8 on OS X 10.5 and up (as self contained server for development only)... You have to start Coldfusion in the Terminal manually:
type: sudo /Applications/ColdFusion8/bin/ColdFusion start
Then enter system password.

Then open the CF Launcher and Run the Webserver Connector Utility.
Setup Apache:

config dir = /etc/Apache2
Advanced --> binary = /usr/sbin/httpd
Advanced --> server control script = /usr/sbin/apachectl

After these settings are saved.... you have to manually stop Coldfusion in the Terminal:
type: sudo /Applications/ColdFusion8/bin/ColdFusion stop

Then replace the mod_jrun22.so file in /Applications/ColdFusion8/runtime/lib/wsconfig/1
you can download the appropriately compiled mod file here: http://www.scottpinkston.org/Downloads/mod_jrun22_64.zip

Now Apache needs to be restarted. I did this by going into system preferences/file sharing/ uncheck and then recheck web sharing.
Restart coldfusion.

And That Is It!!! localhost:8500 is on and I am now running coldfusion!
There were a couple of threads on this in several different places. Different people got around this issue differently according to the configuration desires... but this is how it worked for me. I reinstalled and dumped the program sooooo many times over the past two days that I really could not stand it anymore... the thought of someone being able to get around it really drove me to this one. I am sure Adobe will come out with a fix soon... but if this helps anybody out there... Here is my journal / contribution.
Now it is time to fix all the other things I am having problems with in learning Coldfusion.

Cheers!
Michael Parenteau
User is offlineProfile CardPM

Go to the top of the page

Nykc
post 15 Feb, 2008 - 07:09 PM
Post #10


sudo rm -R /

Group Icon
Joined: 14 Sep, 2007
Posts: 3,309



Thanked 7 times

Dream Kudos: 275
My Contributions


Nice, and you posted the solution. You should type that up in a tutorial and submit it for future mac users.
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 10/7/08 01:35AM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month