2

I installed Django-socketio because it seems like the best way to implement chat by myself. The problem I have is that when I run python manage.py runserver_socketio host:port it runs and I can't close the terminal or it will stop working, how can I get around that?

4

1 回答 1

0

我用命令 nohup 解决了同样的问题。

因此,您使用nohup python manage.py runserver_socketio host:port &(& 从背景开始) 启动服务器。结果存储在 nohup.out 文件中...

于 2013-09-12T15:07:20.173 回答