内容简介:翻译自:https://stackoverflow.com/questions/31970908/how-to-kill-all-instance-of-uwsgi
我正在尝试将我的项目上传到服务器.现在服务器中已有一个项目.我有一个新项目,我想运行并用新项目替换旧项目,所以我将新项目拉到服务器.然后我激活虚拟环境并完成所有必要的工作.然后当我尝试运行命令时:
uwsgi --plugins=python --chdir=/var/www/prjt/src/ --socket=127.0.0.1:8889 --module=prjt.wsgi:application &
它告诉我
probably another instance of uWSGI is running on the same address (127.0.0.1:8889). bind(): Address already in use [core/socket.c line 761]
我搜索了类似的问题,并找到了关于杀死所有uwsgi实例的解决方案,如本答案 here 中所述
但是找不到怎么做.
我是这个领域的新手.谁能请帮忙.我被困在这里.
希望问题很清楚.提前致谢
在命令中添加一个pid文件:
uwsgi --plugins=python --chdir=/var/www/prjt/src/ --socket=127.0.0.1:8889 --module=prjt.wsgi:application --pidfile /tmp/myapp.pid
然后用
uwsgi --stop /tmp/myapp.pid
以安全的方式阻止uwsgi实例.
如果在启动第一个实例时没有指定pid文件,则可以使用它来粗暴地删除它
kill `pidof uwsgi`
翻译自:https://stackoverflow.com/questions/31970908/how-to-kill-all-instance-of-uwsgi
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Dive Into Python 3
Mark Pilgrim / Apress / 2009-11-6 / USD 44.99
Mark Pilgrim's Dive Into Python 3 is a hands-on guide to Python 3 (the latest version of the Python language) and its differences from Python 2. As in the original book, Dive Into Python, each chapter......一起来看看 《Dive Into Python 3》 这本书的介绍吧!
XML 在线格式化
在线 XML 格式化压缩工具
HEX HSV 转换工具
HEX HSV 互换工具