I am testing the Google app for the Google App Google following the steps in the Getting Started section.
When I try to run the application on the local host from the Windows startup window, it waits about 5 seconds, and then displays a yellow exclamation mark. Logs give an error:
google.appengine.tools.devappserver2.wsgi_server.BindError: unable to bind localhost: 8080
What causes this error?
I ran netstat -aon and saw that port 0.0.0.0:8080 already in use by another process. I changed the setup of the Facebook app and the GAE settings to point to localhost:8888 instead, and it works!
netstat -aon
0.0.0.0:8080
localhost:8888
This command will help you remove the process using port : 8002 without exception.
lsof -P | grep ': 8002' | awk '{print $ 2}' | xargs kill -9
Source: https://habr.com/ru/post/1485331/More articles:https://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1485326/sqlalchemy-commit-changes-to-object-modified-through-dict&usg=ALkJrhigh_NubmXfSL4j-9j7dK4UvWOfSwIs there a way to access the base class through a Derived Class object directly in PHP - phpefficiently iterating through nested python lists - pythonhttps://translate.googleusercontent.com/translate_c?depth=1&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1485329/mapping-tables-to-domain-classes-in-a-ddd-architecture&usg=ALkJrhhnZpXPFoYJeJz6hOY10g-f8J9d9gEnumerating a list by list in Python - pythonJQuery expands and scrolls at the same time - javascriptPushSharp notifications always raise "NotificationSent" or "NotificationFailed" events - pushsharpTextarea not working with jQuery live keyup function - javascriptMakeas wide as possible - htmlGet the difference between the following Linq objects for objects - c #All Articles