django development server, how to stop it when it run in background

后端 未结 8 1703
渐次进展
渐次进展 2020-12-24 00:59

I use a clode server to test my django small project , I type in manage.py runserver & ,and then I log out my cloude server ,I can visit mysite normally but when I reloa

相关标签:
8条回答
  • 2020-12-24 01:40

    As far as i know ctrl+c or kill process is only ways to do that on remote machine. If you will use Gunicorn server or somethink similar you will be able to do that using Supervisor.

    0 讨论(0)
  • 2020-12-24 01:51

    From task manager you can end the python tasks that are running. Now run python manage.py runserver from your project directory and it will work.

    0 讨论(0)
提交回复
热议问题