How to open ports to the outside world in Alibaba Cloud Centos7.X

How to open ports to the outside world in Alibaba Cloud Centos7.X

In a word: if you buy a cloud server from any major manufacturer, just go to the security group and configure the corresponding ports you need to use!

Because the blogger uses Alibaba Cloud, here I will only introduce how to open ports on Alibaba Cloud. Just follow the three pictures below.

At this time, some students said, is it okay not to use the platform? I want to exercise my Linux ability... Of course, I will introduce how to configure firewall rules directly on Linux to open ports (Centos7 and above, the firewall rules used by Centos6 and 7 are different, Centos6 is not introduced here)

First master systemctl+firewall command

describe Order
Check the firewall status systemctl status firewalld.service
Start firewall systemctl start firewalld
Stop the firewall systemctl stop firewalld
Start firewall at boot systemctl enable firewalld
Disable firewall at startup systemctl disable firewalld
Learn more about systemctl command^_^
Check whether the service is started systemctl is-enabled firewalld.service
View the list of started services systemctl list-unit-files|grep enabled
View the list of services that failed to start systemctl --failed

Secondly, master firewall-cmd command

describe Order
View all firewall information firewall-cmd --list-all
View open ports firewall-cmd --list-ports
Update firewall rules firewall-cmd --reload
Open Ports firewall-cmd --zone=public --add-port=3000/tcp --permanent
Closing a Port firewall-cmd --zone=public --remove-port=3000/tcp --permanent

Final execution steps:

  1. First check whether the firewall is turned on: systemctl status firewalld.service
  2. Open the port (rules need to be updated to take effect after opening): firewall-cmd --zone=public --add-port=3000/tcp --permanent
  3. Update firewall rules: firewall-cmd --reload

This is the end of this article about how to open ports to the outside world in Alibaba Cloud Centos7.X. For more information about how to open ports to the outside world in Alibaba Cloud Centos7.X, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to install Python 3.6 on Alibaba Cloud CentOS 7.4
  • Alibaba Cloud CentOS 7 Server Build Nginx Web Service Experience Example
  • Tutorial on installing and configuring MySql5.7 in Alibaba Cloud ECS centos6.8
  • Tutorial on installing and configuring Tomcat on Alibaba Cloud Server and adding external network access ports

<<:  Detailed example of using if statement in mysql stored procedure

>>:  Detailed explanation of the parsererror error case in JavaScript solution in ajax

Recommend

A must-read career plan for web design practitioners

Original article, please indicate the author and ...

Detailed explanation of the function and usage of keepAlive component in Vue

Preface During the interview, many interviewers m...

Web lesson plans, lesson plans for beginners

Teaching Topics Web page Applicable grade Second ...

How to configure MySQL master-slave replication under Windows

MySQL master-slave replication allows data from o...

How to connect to MySQL remotely through Navicat

Using Navicat directly to connect via IP will rep...

SQL merge operation of query results of tables with different columns

To query two different tables, you need to merge ...

Design theory: Why are we looking in the wrong place?

I took the bus to work a few days ago. Based on m...

Sample code for a large drop-down menu implemented in pure CSS

This is a large drop-down menu implemented purely...

SVG button example code based on CSS animation

The specific code is as follows: <a href="...

Analysis of the Principles of MySQL Slow Query Related Parameters

MySQL slow query, whose full name is slow query l...

MySQL 5.6 root password modification tutorial

1. After installing MySQL 5.6, it cannot be enabl...

Set the input to read-only via disabled and readonly

There are two ways to achieve read-only input: dis...

Practical way to build selenium grid distributed environment with docker

Recently, I needed to test the zoom video confere...

Discussion on the way to open website hyperlinks

A new window opens. Advantages: When the user cli...

Webpack builds scaffolding to package TypeScript code

Create a folder Directory structure: dabaots Init...