Centos/linux Open 80, 8080 ports or open a port

Source: Internet
Author: User

Only 22 ports are opened when the system is loaded. The site cannot be accessed after the Nginx+php+mysql is loaded.

Iptables-l-N

View firewall settings Discovery does not turn on port 80

Because the Linux firewall is turned off by default. There are two ways, one is to turn off the firewall, and the other is to let the firewall open the port.

To turn off firewall naming:

Service iptables Stop (not recommended)

The steps to open port 8080 are as follows:

1, modify the/etc/sysconfig/iptables file, add the following line:

-A rh-firewall-1-input-m state--state new-m tcp-p TCP--dport 8080-j ACCEPT

Restart Iptables


Service Iptables Restart

2, restart the firewall, there are two ways to restart the firewall

A) effective after reboot
Open: Chkconfig iptables on
OFF: Chkconfig iptables off

b) immediate effect, failure after reboot
Open: Service iptables start
Close: Service iptables stop

Open a range of ports 3000 through 5000

-A rh-firewall-1-input-m state--state new-m tcp-p TCP--dport 3000:5000-j ACCEPT

Centos/linux Open 80, 8080 ports or open a port

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.