(( '127.0.0.1', 8080)) 已经关闭
(( '127.0.0.1', 8080)) already shut down
我正在尝试 运行 使用 CherryPy 并遵循本教程 http://docs.cherrypy.org/en/latest/install.html BeagleBone Black 中的服务器 http://docs.cherrypy.org/en/latest/install.html,每次 运行 我都会收到此错误消息
ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(( '127.0.0.1',8080))already shut down
如何重新开启它?
我想端口 8080 已被使用。您的命令可以终止 Linux.
上特定端口上的进程 运行
fuser -k 8080/tcp
如果您尝试远程访问您的设备,您必须明确配置 Cherrypy 以绑定所有接口:
import cherrypy
class HelloWorld(object):
@cherrypy.expose
def index(self):
return "Hello world!"
if __name__ == '__main__':
cherrypy.config.update({'server.socket_host': '0.0.0.0'} )
cherrypy.quickstart(HelloWorld())
我正在尝试 运行 使用 CherryPy 并遵循本教程 http://docs.cherrypy.org/en/latest/install.html BeagleBone Black 中的服务器 http://docs.cherrypy.org/en/latest/install.html,每次 运行 我都会收到此错误消息
ENGINE HTTP Server cherrypy._cpwsgi_server.CPWSGIServer(( '127.0.0.1',8080))already shut down
如何重新开启它?
我想端口 8080 已被使用。您的命令可以终止 Linux.
上特定端口上的进程 运行fuser -k 8080/tcp
如果您尝试远程访问您的设备,您必须明确配置 Cherrypy 以绑定所有接口:
import cherrypy
class HelloWorld(object):
@cherrypy.expose
def index(self):
return "Hello world!"
if __name__ == '__main__':
cherrypy.config.update({'server.socket_host': '0.0.0.0'} )
cherrypy.quickstart(HelloWorld())