摘要:
1. 后台运行任务调到前台运行 # 1. 将任务放在后台继续运行 [root@server ~]#ping baidu.com > /dev/null & [1] 33859 # 2. 查看后台任务列表 [root@server ~]#jobs [1]+ Running ping baidu.com 阅读全文
摘要:
####方法1: ```bash [root@server ~]#systemctl reload nginx ``` ####方法2: ```bash [root@server ~]#ps -ef | grep nginx root 39543 1 0 21:47 ? 00:00:00 nginx 阅读全文
摘要:
图解流程: 确保当前nginx进程运行中 ```bash [root@server ~]#ps -ef | grep nginx root 40538 1 0 22:06 ? 00:00:00 nginx: master process /usr/sbin/nginx nginx 40539 405 阅读全文