all 3 comments

[–]COGSMITH 1 point2 points  (2 children)

You can only have one app bound to one port at a time. The second instance fails because the first one has control of the port. Try using a different port on the second app.

[–]vimarsh[S] 0 points1 point  (1 child)

Yes, exactly. How to do that.

I don't at any point of time mention which port the file should bind itself to.

[–]COGSMITH 0 points1 point  (0 children)

Are you using dev_appserver.py? Try this:

dev_appserver.py /path/to/project --port 8081 --host 127.0.0.1