Google App Engine : when connecting to http://localhost:8080 get HTTP Error 500 Internal server error

Posted on Updated on

So I was running google app engine in order to get some code running.

while it should have ran out of the box it didn’t.

Checked firewall, which would have been my first suspect.

that wasn’t it.

http://localhost:8000 was working fine.

Looked around and found the solution below:

had the same problem. This seemed to fix it:

cd to google_appengine, run

python dev_appserver.py –port=8080 –host=127.0.0.1 /path/to/application

at this point there is a prompt to allow updates on running, I said Yes.

At this point the app was running as it should, also when I quit this and went in using the launcher again, that worked too.

http://stackoverflow.com/questions/16474027/cant-connect-to-localhost8080-when-trying-to-run-google-app-engine-program

Once I ran the command dev_appserver.py it was able to give me feedback on my code via error messages that  I wasnt getting with GAE. And it’s always something simple….

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s