Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Unable to bind localhost:8000" error while running sample application in google app engine

I have just installed GAE launcher and am trying to run a sample application to make sure it works and I am getting the below error.

raise BindError('Unable to bind %s:%s' % self.bind_addr)
google.appengine.tools.devappserver2.wsgi_server.BindError: Unable to bind localhost:8000
2014-03-24 10:54:54 (Process exited with code 1)

I am trying to run the python version of the app with python 2.7 and am using windows 8.1 operating system. I did not create any files for the app, I just created a new application and am trying to run it in localhost.

Can someone please tell me what this error means and how to fix it?

like image 505
anirudh Avatar asked Mar 24 '14 05:03

anirudh


1 Answers

The app server starts two servers: one for your application, the other for development console.

Change the ip address for the development console with:

dev_appserver.py --admin_port=9000

like image 192
Vaseem Ahmed Khan Avatar answered Oct 11 '22 01:10

Vaseem Ahmed Khan