linux服务后台管理
把进程放到后台有两种方法
1、cmmand &
2、ctrl+z 暂停到后台
查看后台服务 jobs
把后台进程移到前台
fg %2 工作号 恢复到前台
后台服务继续执行
bg %工作号
[root@LocalWeb01 ~]# jobs 查看后台工作
[1] Stopped top
[2]- Stopped top
[3]+ Stopped top
加号代表默认第一个恢复
减号代表默认第二个恢复