Preface If you are like me, as a hard-working Java backend, in addition to implementing a large number of project functions, you also have to take into account the deployment and operation and maintenance of the project. Install a new Nginx on a new server. Check out the online tutorials before installation. Faced with a variety of tutorials and installation methods, you will always wonder which method is the best, or which method is most suitable for you? Next, let's analyze the various Nginx installation methods and see which situation each is suitable for. Install using system binary source On Ubuntu/Debian sudo apt-get install nginx Or RedHat/CentOS sudo yum install nginx This method is the simplest and quickest way, but not the best way. Let’s talk about this main problem below. advantage
shortcoming
If you are a Linux novice, it is absolutely recommended to use this installation method. You don’t need to worry about compilation dependencies and can use it directly after installation. However, if your server is used in a production environment and is being developed and gradually improved, this method is not recommended. Third-party modules may be added in the future, and they will definitely need to be compiled and installed (described below). When restarting the server, do not use the root user, but use sudo to temporarily gain root. If your server is used to deploy static files and web spaces, and you usually use FTP tools to deploy files, there will be no problem using this method. Compile and install I won’t write about the pros and cons, basically just reverse the above. To install using this method, you must have some knowledge of Linux compilation, and only moderate Linux users can handle it. I have seen that most tutorials online install compilation dependencies directly in /usr/local/, which is not a good approach. If we want to uninstall these dependencies in the future, we will find it very troublesome. It is not possible to simply delete the directory category. Some Linux distributions will write the installation files into configuration files, and I don’t know where to find these configuration files. If the dependent version affects other software, how to deal with the version problem. We just wanted to install Nginx, but it led to a lot of problems. Compilation environment preparation Before you start, make sure you have gcc, make, wget, and g++ installed on your Linux system. Create a directory to store downloaded files, enter the directory to download the dependent library source files Download openssl mainly for ssl module encryption, support http wget https://www.openssl.org/source/openssl-1.0.2s.tar.gz Download pcre to implement support for address redirection, address rewriting, localtion instructions, and regular expressions wget https://ftp.pcre.org/pub/pcre/pcre-8.43.tar.gz Download zlib gzip compression module wget https://zlib.net/zlib-1.2.11.tar.gz Download Nginx wget http://nginx.org/download/nginx-1.17.1.tar.gz Unzip all the files using tar ls *.tar.gz | xargs -n1 tar xzvf Compile options A script that sets various Nginx parameters using ./configure, including paths to source and configuration files, compiler options, connection handling methods, and module lists. The script finishes by creating the Makefiles required to compile the code and install Nginx Open Source.
There are too many compilation parameters that I will not list one by one. Students who are interested can go to See nginx official website Compile and install ./configure \ --with-openssl=../openssl-1.0.2s \ --with-pcre=../pcre-8.43 \ --with-zlib=../zlib-1.2.11 \ --with-pcre-jit --user=admin \ --prefix=/home/admin/nginx \ --with-http_ssl_module \ --with-http_v2_module Output the following information, indicating that the dependency is OK Configuration summary + using PCRE library: ../pcre-8.43 + using OpenSSL library: ../openssl-1.0.2s + using zlib library: ../zlib-1.2.11 nginx path prefix: "/home/admin/nginx" nginx binary file: "/home/admin/nginx/sbin/nginx" nginx modules path: "/home/admin/nginx/modules" nginx configuration prefix: "/home/admin/nginx/conf" nginx configuration file: "/home/admin/nginx/conf/nginx.conf" nginx pid file: "/home/admin/nginx/logs/nginx.pid" nginx error log file: "/home/admin/nginx/logs/error.log" nginx http access log file: "/home/admin/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp" Compile make Install make install Set permissions Because Linux sets ordinary users and cannot occupy ports below 1024, starting nginx directly will result in insufficient permissions errors. Assign nginx to the root user and assign special permissions. sudo chown root nginx sudo chmod u+s nginx Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. You may also be interested in:
|
<<: Simple usage of MySQL temporary tables
>>: Example of Vue transition to achieve like animation effect
Recently, I encountered a problem of whether the d...
Table of contents Preface Simulating data Merged ...
Docker usage of gitlab gitlab docker Startup Comm...
01. Compile options and kernel compilation The Li...
This article mainly introduces the breadcrumb fun...
1. Background Sysbench is a stress testing tool t...
MySQL can be set when it is installed, but it see...
privot is the intermediate table of many-to-many ...
Find the problem I recently encountered a problem...
Composition inheritance Combination inheritance i...
Required effect: After clicking to send the verif...
1. Add a user . First, use the adduser command to...
The Nginx ngx_http_image_filter_module module (ng...
IE8 new feature Web Slices (Web Slices) Microsoft...
ssh-secure shell, provides secure remote login. W...