Linux后台运行命令

时间:2023-01-31 12:47:35

在linux下让某些命令在后台运行
原始命令为

python manage.py runserver 0.0.0.0:8000

关掉终端,命令停止

command &

即在命令后方加‘&’即可

那么此命令后台运行的方式为

python manage.py runserver 0.0.0.0:8000 &

关掉终端,命令不停止

nohup command &

即在此命令前方加‘nohup’,后方加‘&’即可
那么此命令后台运行的方式为

nohup python manage.py runserver 0.0.0.0:8000 &

程序运行原先输出在屏幕的结果将被默认重定向输出到‘nohup.out’
指定重定向输出文件的格式为

nohup command > out.file 2>&1

输出将被重定向输出到‘out.file’中