How to configure Linux firewall and open ports 80 and 3306

How to configure Linux firewall and open ports 80 and 3306

Port 80 is also configured. First enter the firewall configuration file

shell># vim /etc/sysconfig/iptables

Add the following two rules:

-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT

Special note: Many netizens add these two rules to the last line of the firewall configuration, causing the firewall to fail to start

The correct rule should be added below the default port 22 rule.

The added firewall configuration files are as follows:

Restart the firewall, done!

shell>#service iptables restart

The above are all the relevant knowledge points introduced this time. I hope it can help everyone.

You may also be interested in:
  • Linux firewall status check method example
  • A brief analysis of Linux to check the firewall status and the status of the ports open to the outside world
  • How to modify firewall configuration in Linux system
  • How to use firewall iptables strategy to forward ports on Linux servers
  • How to check if the firewall is turned off in Linux

<<:  JS implements a detailed plan for the smooth version of the progress bar

>>:  Usage and scenario analysis of npx command in Node.js

Recommend

Master the CSS property display:flow-root declaration in one article

byzhangxinxu from https://www.zhangxinxu.com/word...

Detailed explanation of transactions and indexes in MySQL database

Table of contents 1. Affairs: Four major characte...

Vue implements a scroll bar style

At first, I wanted to modify the browser scroll b...

5 ways to achieve the diagonal header effect in the table

Everyone must be familiar with table. We often en...

Vue implements tab label (label exceeds automatic scrolling)

When the created tab label exceeds the visible ar...

Use thead, tfoot, and tbody to create a table

Some people use these three tags in a perverted wa...

Analysis of the solution to Nginx Session sharing problem

This article mainly introduces the solution to th...

Add ico mirror code to html (favicon.ico is placed in the root directory)

Code: Copy code The code is as follows: <!DOCTY...

MySQL exposes Riddle vulnerability that can cause username and password leakage

The Riddle vulnerability targeting MySQL versions...

Javascript front-end optimization code

Table of contents Optimization of if judgment 1. ...

Detailed explanation of React component communication

Table of contents Component Communication Introdu...

WeChat applet implements the Record function

This article shares the specific code for the WeC...

Detailed explanation of Nginx process management and reloading principles

Process structure diagram Nginx is a multi-proces...

MySQL slow query: Enable slow query

1. What is the use of slow query? It can record a...