Check all running ports
# List down all active ports
netstat -anp tcp | grep LISTEN
# Check if IP and Port reacheable
# nslookup <IP Address> <Port Number>
nslookup localhost 8083
Good Reference
https://www.cyberciti.biz/faq/unix-linux-check-if-port-is-in-use-command/