首页 > 代码库 > 在ubuntu上使用uwsgi部署CherryPy的应用
在ubuntu上使用uwsgi部署CherryPy的应用
1, 安装uWSGI server
sudo apt-get install uwsgi uwsgi-plugin-python2, 在/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
4,restart uwsgisudo ln -s /etc/uwsgi/apps-available/appsample.json /etc/uwsgi/apps-enabled/appsample.json
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。