How do I find the service name of an application?

I have installed yammer app on my centos (linux) machine. It starts when the machine starts up. How can I find out its service name and how can I remove from startup ...?

+2


a source to share


1 answer


ps ax will display processes currently running by all users while  
ps aux will display processes currently running by the current user.

      

If you pair them with grep, we hope you find what you are looking for. For instance:



ps ax | grep yammer

      

+1


a source







All Articles