Apps won't run on GAE - 'unable to bind to localhost:0'

后端 未结 7 922
谎友^
谎友^ 2020-12-14 20:10

I recently upgraded Google App Engine to 1.7.7. and have not been able to run any apps locally since. This includes apps that worked before the update and apps I\'ve created

7条回答
  •  [愿得一人]
    2020-12-14 20:41

    For people who got Unknown key when running fuser -k 8080/tcp, here is a solution which worked for me:

    lsof -P | grep ':8080' | awk '{print $2}' | xargs kill -9
    

提交回复
热议问题