首页 > 代码库 > 在ubuntu上使用uwsgi部署CherryPy的应用

在ubuntu上使用uwsgi部署CherryPy的应用

1, 安装uWSGI server

sudo apt-get install uwsgi uwsgi-plugin-python
2, 在/etc/uwsgi/apps-available目录下创建配置文件
appsample.json
内容如下
{
    "uwsgi": {
        "chdir": "/home/yourdir",
        "uid": "your-userid",
        "gid": "www-data",
        "workers": 8,
        "module": "appsample:mkapplication()",
        "pythonpath": "/path/to/the/directory/where/yourapp.py/is/found",
        "show-config": true,
        "stats": "127.0.0.1:9191"
    }
}

3, 创建一个link
sudo ln -s /etc/uwsgi/apps-available/appsample.json /etc/uwsgi/apps-enabled/appsample.json
4,restart uwsgi
sudo service uwsgi restart

5,通过如下就可以访问
uwsgi --connect-and-read 127.0.0.1:9191

6,为了便于检测stat server,可以安装
sudo pip install uwsgitop
然后通过uwsgitop检测uwsgi的运行
uwsgitop 127.0.0.1:9191