Browse Source
Doc: 优化【服务器部署】
不必单独创建nohup.out文件
nohup 命令执行时会自动创建
master
Cancellara
GitHub
10 months ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
1 deletions
-
README.md
|
|
@@ -206,7 +206,6 @@ python3 app.py # windows环境下该命令通 |
|
|
|
使用nohup命令在后台运行程序: |
|
|
|
|
|
|
|
```bash |
|
|
|
touch nohup.out # 首次运行需要新建日志文件 |
|
|
|
nohup python3 app.py & tail -f nohup.out # 在后台运行程序并通过日志输出二维码 |
|
|
|
``` |
|
|
|
扫码登录后程序即可运行于服务器后台,此时可通过 `ctrl+c` 关闭日志,不会影响后台程序的运行。使用 `ps -ef | grep app.py | grep -v grep` 命令可查看运行于后台的进程,如果想要重新启动程序可以先 `kill` 掉对应的进程。日志关闭后如果想要再次打开只需输入 `tail -f nohup.out`。此外,`scripts` 目录下有一键运行、关闭程序的脚本供使用。 |
|
|
|