2014-07-05 84 views
1

我在启动CherryPy时遇到了一些麻烦,我无法弄清楚为什么我不断收到此错误。以下是有日志输出的版本和相关代码。CherryPy无法启动

的Python 2.7.6 的CherryPy 3.5.0(通过PIP)

CURRENT_DIR = os.path.dirname(os.path.abspath(__file__)) 
STATIC_DIR = os.path.join(CURRENT_DIR, "static") 
CONFIG = { 
    '/static': { 
     'tools.staticdir.on': True, 
     'tools.staticdir.dir': STATIC_DIR 
    } 
} 

Daemonizer(cherrypy.engine).subscribe()       # When we start, do it as a daemon process 
cherrypy.config.update({'server.socket_host': '127.0.0.1','server.socket_port': 8080,'log.error_file': 'site.log'})  # Listen on all local IPs (default is 8080) 
cherrypy.tree.mount(MyWebServer(), '/', config=CONFIG)   # Mount the app on the root 
cherrypy.engine.start() 

这里的日志输出:

[05/Jul/2014:10:28:01] ENGINE Bus STARTING 
[05/Jul/2014:10:28:01] ENGINE Forking once. 
[05/Jul/2014:10:28:01] ENGINE Forking twice. 
[05/Jul/2014:10:28:01] ENGINE Daemonized to PID: 21464 
[05/Jul/2014:10:28:01] ENGINE Started monitor thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Started monitor thread 'Autoreloader'. 
[05/Jul/2014:10:28:01] ENGINE Started monitor thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Started monitor thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Started monitor thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Started monitor thread '_TimeoutMonitor'. 
[05/Jul/2014:10:28:01] ENGINE Error in 'start' listener <bound method Server.start of <cherrypy._cpserver.Server object at 0x10cf2d190>> 
Traceback (most recent call last): 
    File "/Library/Python/2.7/site-packages/cherrypy/process/wspbus.py", line 205, in publish 
    output.append(listener(*args, **kwargs)) 
    File "/Library/Python/2.7/site-packages/cherrypy/_cpserver.py", line 167, in start 
    self.httpserver, self.bind_addr = self.httpserver_from_self() 
    File "/Library/Python/2.7/site-packages/cherrypy/_cpserver.py", line 158, in httpserver_from_self 
    httpserver = _cpwsgi_server.CPWSGIServer(self) 
    File "/Library/Python/2.7/site-packages/cherrypy/_cpwsgi_server.py", line 43, in __init__ 
    accepted_queue_timeout=self.server_adapter.accepted_queue_timeout, 
TypeError: __init__() got an unexpected keyword argument 'accepted_queue_size' 

[05/Jul/2014:10:28:01] ENGINE Shutting down due to error in start listener: 
Traceback (most recent call last): 
    File "/Library/Python/2.7/site-packages/cherrypy/process/wspbus.py", line 243, in start 
    self.publish('start') 
    File "/Library/Python/2.7/site-packages/cherrypy/process/wspbus.py", line 223, in publish 
    raise exc 
ChannelFailures: TypeError("__init__() got an unexpected keyword argument 'accepted_queue_size'",) 

[05/Jul/2014:10:28:01] ENGINE Bus STOPPING 
[05/Jul/2014:10:28:01] ENGINE HTTP Server None already shut down 
[05/Jul/2014:10:28:01] ENGINE Stopped thread '_TimeoutMonitor'. 
[05/Jul/2014:10:28:01] ENGINE Stopped thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Stopped thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Stopped thread 'Autoreloader'. 
[05/Jul/2014:10:28:01] ENGINE Stopped thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Stopped thread 'Monitor'. 
[05/Jul/2014:10:28:01] ENGINE Bus STOPPED 
[05/Jul/2014:10:28:01] ENGINE Bus EXITING 
[05/Jul/2014:10:28:01] ENGINE Bus EXITED 

回答

3

我猜Daemonizer存在表明你实际上问CherryPy的部署。

首先,cherrypy.engine.start()是不够启动CherryPy。最低程序请看cherrypy.quickstart。我把它放在__name__ == '__main__'的条件下。它允许你直接从shell执行脚本。其次,你不应该直接在应用程序代码中处理Daemonizer插件(和PIDFile,DropPrivileges等)。有cherryd这应该处理系统的东西。

您可以运行下面的代码(将static.py,cd置于包含的目录中)cherryd -i static。它会在前台启动你的应用程序。 cherryd -d -i static将守护您的应用程序。

#!/usr/bin/env python 
# -*- coding: utf-8 -*- 


import os 

import cherrypy 


path = os.path.abspath(os.path.dirname(__file__)) 
config = { 
    'global' : { 
    'server.socket_host' : '127.0.0.1', 
    'server.socket_port' : 8080, 
    'server.thread_pool' : 4 
    }, 
    '/static' : { 
    'tools.staticdir.on' : True, 
    'tools.staticdir.dir' : os.path.join(path, 'static') 
    } 
} 

class App: 

    @cherrypy.expose 
    def index(self): 
    return 'Your dynamic stuff' 


cherrypy.tree.mount(App(), '/', config) 


if __name__ == '__main__': 
    cherrypy.engine.signals.subscribe() 
    cherrypy.engine.start() 
    cherrypy.engine.block() 

我写了一个完整的的CherryPy部署教程,cherrypy-webapp-skeleton,前几年。看看你是否需要一个完整的图片。

+0

这似乎像一个魅力工作。虽然由于某种原因,当我通过pip安装cherrypy时没有安装樱桃,所以我只是从Google Code repo中抓取它:)。 –