1834501 Members
2514 Online
110068 Solutions
New Discussion

Services

 
SOLVED
Go to solution
vinuhcl
Advisor

Services

Dear all,

how to check a purticular service is running or not. Any specified command???

Regs,
Vinu
2 REPLIES 2
Ivan Krastev
Honored Contributor
Solution

Re: Services

If you know the service name use: ps -ef | grep ServiceName

If you know the port use netstat to check what is listening on that port.

regards,
ivan
mavrick
Regular Advisor

Re: Services

Hi,

the services are listed in the /etc/services.
You can check on this file .Otherwise you can
able to check the particular daemon assciated with it is running by
ps -ef | grep -i

thank u