Answers for "open port 8080 linux"

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
0

ubuntu run in port 80

sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf
sudo a2enconf phpmyadmin
sudo service apache2 restart
Posted by: Guest on June-14-2020

Browse Popular Code Answers by Language