Detailed explanation of the pitfalls of Apache domain name configuration

Detailed explanation of the pitfalls of Apache domain name configuration

I have never used apache. After I started working, I have always used nginx (not operation and maintenance). Recently, a small project of a friend of mine had some problems. I came into contact with apache.

First, configure the domain name and listen to port 889

Step 2: Restart Apache

/www/server/apache/bin/apachectl restart

The third step is to access it with an external browser.

Step 4. Identify the cause

1. Access the server locally using curl localhost:889, and the connection is refused

2. Check the port usage lsof -i:889

3. Query the monitoring netstat -tnl.

Monitoring is normal

4. I thought that the server port might not be open, so I used firewall-cmd --list-ports to check the open ports.

No port 889

5. Take centos7 opening port 889 as an example:

Adding Ports

firewall-cmd --zone=public --add-port=889/tcp --permanent (--permanent takes effect permanently, and will become invalid after restart without this parameter)

Refresh Rules

firewall-cmd --reload

View the specified port

firewall-cmd --zone=public --query-port=8080/tcp

Delete the specified port

firewall-cmd --zone=public --remove-port=8080/tcp --permanent

View all open ports

firewall-cmd --list-ports

6. In the end, it still doesn't work, because on Alibaba Cloud, the dedicated network limits the port, so you have to set it up

If you have a friend like me who is new to this problem, you can deal with it like this

This is the end of this article about the pitfalls of Apache domain name configuration. For more relevant content about Apache domain name configuration, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to implement web stress testing through Apache Bench
  • How to install apachebench separately in CentOS environment
  • Spring Cloud integrates Apache-SkyWalking to implement link tracking
  • Apache Shrio security framework implementation principle and example explanation
  • Detailed description and usage examples of Apache Commons tool classes in Java's commonly used class library
  • Tutorial on installing Apache 2.4.41 on Windows 10
  • Apache Bench stress testing tool implementation principle and usage analysis

<<:  Solve the problem that element edit form el-radio cannot be selected after echoing

>>:  Detailed steps to configure my.ini for mysql5.7 and above

Recommend

Detailed steps for installing and configuring MySQL 8.0 on CentOS 7.4 64-bit

Step 1: Get the MySQL YUM source Go to the MySQL ...

Design Theory: Textual Expression and Usability

<br />In text design, we usually focus on th...

Summary of data interaction between Docker container and host

Preface When using Docker in a production environ...

How to move a red rectangle with the mouse in Linux character terminal

Everything is a file! UNIX has already said it. E...

Dockerfile text file usage example analysis

Dockerfile is a text file used to build an image....

Have you really learned MySQL connection query?

1. Inner Join Query Overview Inner join is a very...

MySQL green decompression version installation and configuration steps

Steps: 1. Install MySQL database 1. Download the ...

The submit event of the form does not respond

1. Problem description <br />When JS is use...

Detailed explanation of this pointing problem in JavaScript function

this keyword Which object calls the function, and...

...

About the overlap of margin value and vertical margin in CSS

Margin of parallel boxes (overlap of double margi...

SQL interview question: Find the sum of time differences (ignore duplicates)

When I was interviewing for a BI position at a ce...

Detailed explanation of the basic commands of Firewalld firewall in Centos7

1. Basics of Linux Firewall The Linux firewall sy...