How to solve the problem that CentOS port 80 cannot be accessed

angryTom
Release: 2020-03-17 10:39:12
Original
5301 people have browsed it

How to solve the problem that CentOS port 80 cannot be accessed

How to solve the problem that port 80 cannot be accessed in CentOS

There are two ways to solve the problem that port 80 cannot be accessed: 1. Turn off the firewall in CentOS; 2. , Open port 80 of the web service.

1. Turn off the firewall

Use the service iptables stop command to temporarily turn off the firewall so that you can access port 80. (Recommended to learn laravel tutorial)

service iptables stop
Copy after login

iptables The firewall is usually started at boot. After using the above command to temporarily close the firewall, the firewall software will still be started the next time you boot. You can use the following command Disable starting the firewall at startup:

chkconfig iptables off
Copy after login

However, the purpose of the firewall is to prevent malicious external access, so it is best to keep the firewall running.

2. Open port 80 of the web service

Use the following command to temporarily open port 80:

iptables -I INPUT -p tcp --dport 80 -j ACCEPT
Copy after login

Restart the firewall to take effect:

service iptables restart
Copy after login

If you want to keep port 80 open the next time you boot up, use the following command to save the current settings:

service iptables save
Copy after login

This article comes from the PHP Chinese website, CentOS usage tutorial column, please pay attention to this column for more related tutorials!

The above is the detailed content of How to solve the problem that CentOS port 80 cannot be accessed. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!