You need to look for a service in linux:
ps -ef | grep crystal
- e = look in all processes
- f = display full output details
- grep = print lines matching a pattern
- crystal = the search term to check for its status
You need to look for a service in linux:
ps -ef | grep crystal
Comments