If you find yourself needing to check all open/listening ports that your server is using (a good idea for security), run the follow command via SSH:
# netstat -tulp
The command will print a list of all open ports, the programs using them, their PIDs, local addresses, and connection type (tcp/udp).