Skip to content

Instantly share code, notes, and snippets.

@alexruzenhack
Last active November 27, 2018 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexruzenhack/4309a8adaea8348f0076ea5e47a6888d to your computer and use it in GitHub Desktop.
Save alexruzenhack/4309a8adaea8348f0076ea5e47a6888d to your computer and use it in GitHub Desktop.
📋 Check witch ports are open and witch services are running #linux #wildfly

Verify services

Status of all services:

service --status-all

Status of any service:

service wildfly status

Registered services

List of all known services:

chkconfig -list

Turn on/off registered services:

chkconfig wildfly off
chkconfig wildfly on

Net status

List of services and their open ports:

netstat -tulpn

Check for a specific port

netstat -anp | grep 443

Fonts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment