16

我最近将 Google App Engine 升级到 1.7.7。并且从那以后一直无法在本地运行任何应用程序。这包括在更新之前工作的应用程序和我此后创建的应用程序。我没有遇到任何其他关于这个特定问题“无法绑定到 localhost:0”的参考资料,因此非常感谢您对清除这个障碍的任何见解。

我包括了我今天添加的一个新的“Hello World”应用程序的日志。在 OS X 10.6.8 上通过 ActivePython 使用 Python 2.7。

*** Running dev_appserver with the following flags:
    --skip_sdk_update_check=yes --port=12084 --admin_port=8007
Python command: /usr/local/bin/pythonw
INFO     2013-04-13 06:37:31,627 devappserver2.py:498] Skipping SDK update check.
WARNING  2013-04-13 06:37:31,691 api_server.py:328] Could not initialize images API; you are likely missing the Python "PIL" module.
WARNING  2013-04-13 06:37:31,692 simple_search_stub.py:977] Could not read search indexes from /var/folders/ag/ag25hkLMFEG1p0pLBBX5Mk+++TI/-Tmp-/appengine.binderror.b/search_indexes
Traceback (most recent call last):
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/dev_appserver.py", line 193, in <module>
    _run_file(__file__, globals())
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/dev_appserver.py", line 189, in _run_file
    execfile(script_path, globals_)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/devappserver2.py", line 662, in <module>
    main()
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/devappserver2.py", line 655, in main
    dev_server.start(options)
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/devappserver2.py", line 626, in start
    apis.start()
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/api_server.py", line 151, in start
    super(APIServer, self).start()
  File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/google/appengine/tools/devappserver2/wsgi_server.py", line 296, in start
    raise BindError('Unable to bind %s:%s' % self.bind_addr)
google.appengine.tools.devappserver2.wsgi_server.BindError: Unable to bind localhost:0

更新:我能够通过 GAE 启动器部署“Hello World”应用程序,没有任何问题。我运行了errinfo -c -n GoogleAppEngineLauncher.app使用包含的命令,dtrace然后尝试运行三个应用程序,然后关闭它们。这是输出[这有点超出我的理解]:

           EXEC          SYSCALL  ERR  COUNT  DESC
 GoogleAppEngine          madvise   12      1  Cannot allocate memory 
 GoogleAppEngine __disable_threadsignal    0      2 
 GoogleAppEngine           access    0      3 
 GoogleAppEngine bsdthread_register   22      3  Invalid argument 
 GoogleAppEngine            chdir    0      3 
 GoogleAppEngine   close_nocancel    0      3 
 GoogleAppEngine   fcntl_nocancel    0      3 
 GoogleAppEngine             fork    0      3 
 GoogleAppEngine    getdtablesize    0      3 
 GoogleAppEngine           getpid    0      3 
 GoogleAppEngine    open_nocancel    0      3 
 GoogleAppEngine           setsid    0      3 
 GoogleAppEngine      sigprocmask    0      3 
 GoogleAppEngine           stat64    0      3 
 GoogleAppEngine            wait4    0      3 
 GoogleAppEngine       workq_open    0      3 
 GoogleAppEngine            write    0      3 
 GoogleAppEngine          lstat64    0      4 
 GoogleAppEngine             pipe    0      6 
 GoogleAppEngine    thread_selfid    0      6 
 GoogleAppEngine     gettimeofday    0      7 
 GoogleAppEngine             dup2    0      9 
 GoogleAppEngine          madvise    0     17 
 GoogleAppEngine           munmap    0     31 
 GoogleAppEngine             mmap    0     33 
 GoogleAppEngine        sigaction    0     87 
 GoogleAppEngine      getattrlist    0    102 
 GoogleAppEngine          fstat64    0    118 
 GoogleAppEngine             open    0    118 
 GoogleAppEngine          geteuid    0    208 
 GoogleAppEngine              dup    0  10418 
 GoogleAppEngine             read    0  10532 
 GoogleAppEngine            close    0  10584 
 GoogleAppEngine workq_kernreturn    0  20752 
 GoogleAppEngine            close    9  21459  Bad file descriptor 
 GoogleAppEngine           kevent    0  72543 

8 月 16 日更新 2:我安装了最新版本的 GAE Launcher [1.8.3],现在一切正常。

4

7 回答 7

33

Unknown key对于跑步时得到的人fuser -k 8080/tcp,这是一个对我有用的解决方案:

lsof -P | grep ':8080' | awk '{print $2}' | xargs kill -9
于 2015-01-26T20:13:51.187 回答
18

您的套接字已在使用中。杀死它,它应该得到解决。fuser -k 8080/tcp

例如上面的代码在 8080 处杀死并释放套接字

于 2013-04-15T04:07:27.790 回答
5

启动服务器时在另一个端口添加 --port NUMBER 对其进行测试。

于 2013-04-15T05:02:13.200 回答
4

由于未知选项, fuser -k 命令对我不起作用,而是我这样做了。

通过“sudo lsof -i -n -P | grep TCP”查看哪个进程正在使用该端口。我记下进程 ID 并通过活动监视器(在网络选项卡中)退出它。

于 2016-06-03T11:12:17.623 回答
1

Ubuntu 14.04 有一个名为“webfs”的轻量级服务器在 localhost:8000 上侦听。运行-sudo netstat -taupen | grep ":8000" - 在终端中确认。如果它正在监听运行 - sudo killall -q /usr/bin/webfsd - 杀死它。GAE 使用端口 8000 和 8080,如果其中一个或两个都忙,则不会启动。经过反思,webfs 守护进程也可以作为服务打开和关闭:sudo service webfs start/stop。但是,由于这两种方法都需要 root 权限,因此它们不容易自动化。当我从命令行本地启动 appengine 时,只需在启动时将管理端口从 8000 更改为 8001 证明是一种更深思熟虑的方法。我的命令行如下所示:google_appengine/dev_appserver.py --admin_port 8001 projects/helloworld/

于 2014-05-31T02:29:23.140 回答
1

有同样的问题,实际上也试图用 GUI 运行服务器。在 GUI 中停止它,完美运行。

于 2013-06-03T01:29:10.193 回答
1

ctrl-z上次运行应用程序引擎命令时,您使用(shunt to background) 而不是ctrl-c(kill)将其关闭。重新启动终端,下次您从终端使用关闭应用程序引擎时ctrl-c,您会没事的。

于 2014-08-16T04:08:10.343 回答