Answers for "linux open port 8080"

0

used port linux

# Linux
ss -ltn

# windows
netstat -a -p -n tcp | findstr LISTENING

# SOURCE 
https://solace.community/discussion/26/how-to-find-a-free-tcp-port-for-testing-pubsub-with-docker
Posted by: Guest on September-01-2021
0

how to allow traffic on port 8080 in centos 7

firewall-cmd --zone=public --permanent --add-port=8080/tcp
Posted by: Guest on May-11-2020
0

how to allow traffic on port 8080 in centos 7

firewall-cmd --reload
Posted by: Guest on May-11-2020
0

linux free port 8080

fuser -n tcp -k 9001
Posted by: Guest on October-05-2020

Browse Popular Code Answers by Language