Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我运行ssh ubuntu@myapp.com,更改到我的应用程序的 django 目录,然后运行ps | aux less。我在命令中没有看到任何带有 python 的进程。我如何重新启动我的 django 服务器,因为它在后台运行?
ssh ubuntu@myapp.com
ps | aux less
这取决于您如何运行 Django 服务器。如果您将 Django 服务器设置为与 Apache 一起运行,sudo service apache2 restart就可以解决问题。
sudo service apache2 restart
如果您正在运行测试服务器manage.py runserver(fg
manage.py runserver
fg