The method of checking whether the service is started in linux system
Here, take the redis service as an example. Other services can query to change their names.
Method 1: check the redis service process
Ps-ef | grep redis
Method 2: check whether the port number 6379 (the port number of redis) is occupied
Lsof-I: 6379
Method 3: display the port and process of tcp
Netstat-tnlp
Method 4: # ps aux | grep service name (the parameter of ps can be reversed)
These are the details of the ways to check whether the service is started in linux. For more information, please pay attention to other related articles!