3

CherryPy 服务器将其错误日志写入何处?我已经安装了 CherryPy 并使用 python3.2 启动了服务器

    from cherrypy import wsgiserver

    def my_crazy_app(environ, start_response):
        status = '200 OK'
        response_headers = [("Content-type","text/plain")]
        start_response(status, response_headers)
        return ['Hello world!']

    server = wsgiserver.CherryPyWSGIServer(
                ('0.0.0.0', 80), my_crazy_app,
                server_name='www.cherrypy.example')
    server.start()

当我转到该网址时,页面不会加载,也不会打印任何错误。

4

1 回答 1

6

您需要指定错误或访问日志文件名。您可以在配置文件中执行此操作...

[global]
log.error_file = 'Web.log'
log.access_file = 'Access.log'

或在 Python 文件中...

cherrypy.config.update({'log.error_file': Web.log,
                'log.access_file': Access.log
               })

我在想您收到“端口 80 不是免费的”错误。尝试将端口更改为 8080。

安德鲁

于 2012-08-16T12:09:26.950 回答