Linux command to view the process of

Linux command to see the process used

Use the PS command to view the process in Linux

-a,查看所有

-ef,以全格式显示进程所有信息,包括父进程Pid,创建人,创建时间,进程号。等等

-u,以用户(user)的格式显示

-x, 显示后台进程运行参数

Linux common commands utility

Linux system, under normal circumstances, is the process we go through this statement query

1, PS-A

ps -a|grep redis

 You can view such content

2, ps -ef

ps -ef|grep redis

This result can be queried

Published 36 original articles · won praise 3 · Views 5657

Guess you like

Origin blog.csdn.net/TanGuozheng_Java/article/details/104085305