关于linux:Linux查看进程启动时间与运行时间

4次阅读

共计 319 个字符,预计需要花费 1 分钟才能阅读完成。

办法一
grep 过程名
[root@iZ25p102vo3Z ~]# ps -eo pid,lstart,etime,cmd | grep nginx
16968 Fri Mar 4 16:04:27 2016 41-21:14:04 nginx: master process /usr/sbin/nginx
17826 Fri Mar 4 22:53:51 2016 41-14:24:40 nginx: worker process
18312 Fri Apr 15 13:18:31 2016 00:00 grep –color=auto nginx
1.
2.
3.
4.
办法二
指定过程号
ps -p PID -o lstart,etime
参考链接:
3 Ways to check process running time in Linux

正文完
 0