Download the secure terminal MobaXterm_Personal First, download the secure terminal and connect to your public IP. After the connection is successful, the display is as above. Introduction to Nginx Nginx is a lightweight web server and reverse proxy server. Compared with Apache and lighttpd, it has the advantages of less memory usage and higher stability. Its most common use is to provide reverse proxy services After connecting to the server Step 1: Install gcc gcc-c++ The command is: yum install -y gcc gcc-c++ Step 2: Install the PCRE library $ cd /usr/local/ $ wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.33/pcre-8.33.tar.gz $ tar -zxvf pcre-8.36.tar.gz $ cd pcre-8.36 $ ./configure $ make && make install If an error is reported: configure: error: You need a C++ compiler for C++ support Solution: yum install -y gcc gcc-c++ Step 3: Install SSL library $ cd /usr/local/ $ wget http://www.openssl.org/source/openssl-1.0.1j.tar.gz $ tar -zxvf openssl-1.0.1j.tar.gz $ cd openssl-1.0.1j $ ./config $ make && make install Step 4: Install zlib library $ cd /usr/local/ $ wget http://zlib.net/zlib-1.2.11.tar.gz $ tar -zxvf zlib-1.2.11.tar.gz $ ./configure $ make && make install Step 5: Install nginx $ cd /usr/local/ $ wget http://nginx.org/download/nginx-1.8.0.tar.gz $ tar -zxvf nginx-1.8.0.tar.gz $ cd nginx-1.8.0 $ ./configure --user=nobody --group=nobody --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_gzip_static_module --with-http_realip_module --with-http_sub_module --with-http_ssl_module (Note: If you do not add --with-http_ssl_module: after configuring ssl: on in nginx.conf, the startup will report nginx: [emerg] unknown directive "ssl" in /opt/nginx/conf/nginx.conf exception) $ make && make install Start nginx $ /usr/local/nginx/sbin/nginx Step 6: Check whether the startup is successful Open the browser and access the IP address of this machine. If the browser displays Welcome to nginx!, it means that Nginx has been installed and is running successfully. Here are some things I encountered during this process: When I reached step 6, the connection with the browser was unsuccessful and no response appeared, so I checked whether port 80 of the firewall was open. The command is: firewall-cmd --list-all Check port 80 firewall-cmd --zone=public --add-port=80/tcp If port 80 is not open, open port 80 firewall-cmd --reload Re-enable the firewall Restart the nginx service again: /usr/local/nginx/sbin/nginx –s reload If you still cannot connect to this IP address, check whether the local connection is normal: The command is: curl localhost As shown in the picture, the local connection is successful, but the IP is inaccessible Finally, I checked and found that it was because the Alibaba Cloud security group only opened ports 22 and 3389 for the new server, but not port 80. Only these two port numbers are not enough. In order to connect to the server, port 80 needs to be opened. Add configuration rules for security groups Since we are using Alibaba Cloud, we can use Alibaba Cloud's security group operations to achieve the port opening effect. After logging in to Alibaba Cloud, select in the following order: Cloud Server ECS->Security Group->Configuration Rules There are currently three security group rules, namely 22, 3389 and ICMP protocols. Then click Add Security Group Rules in the upper right corner. Add port 80 As shown in the figure, only two changes are needed: Port range: 21/21 means starting from 21 and ending at 21 Authorization object: 0.0.0.0/0 means all IP addresses can access this port As shown in the figure, a new rule is added The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: A brief comparison of Props in React
>>: Tutorial on configuring and changing passwords for the MySQL free installation version
Table of contents 1. Array flattening (also known...
1. Import echart in HTML file <!-- Import echa...
Simple function: Click the plug-in icon in the up...
Table of contents 1. New II. Modification element...
Table of contents HTTP hijacking, DNS hijacking a...
Preface In many cases, we will use virtual machin...
1. Delete file command: find the corresponding di...
This article example shares the specific code of ...
There is no doubt that containers have become an ...
Ubuntu16.04 install and uninstall pip Experimenta...
Table of contents Single content projection Multi...
Table of contents What is the rest operator? How ...
This article briefly introduces the relationship ...
Phenomenon: After MySQL version 5.7, the default ...
Table of contents 1. Limit props to type lists 2....