Home > Article > Backend Development > nginx installation tutorial nginx apache nginx php nginx rewrite
1. Prepare dependent libraries
First of all, because some modules of nginx depend on some lib libraries, these lib libraries must be installed before installing nginx. These dependent libraries mainly include gcc, openssl-devel, pcre-devel and zlib- devel So execute the following command to install:
<code>yum <span>install</span> gcc yum <span>install</span> pcre pcre-devel yum <span>install</span> zlib zlib-devel yum <span>install</span> openssl openssl--devel </code>
2. Install Nginx
Before installation, it is best to check whether nginx is already installed
<code>find -<span>name</span> nginx </code>
If the system has already installed nginx, then uninstall it first
<code>yum <span>remove</span> nginx </code>
First enter /usr/ local directory
<code><span>cd</span> /usr/local</code>
Download the stable version of nginx from the official website
<code>wget http://nginx<span>.org</span>/download/nginx-<span>1.8</span><span>.1</span><span>.tar</span><span>.gz</span></code>
Unzip the nginx compressed package
<code>tar -zxvf nginx-<span>1.8</span><span>.1</span><span>.tar</span><span>.gz</span></code>
and a nginx-1.8.1 directory will be generated. At this time, enter the nginx-1.8.1 directory. Next, install it and use the –prefix parameter. Specify the nginx installation directory, make, make install installation
<code>./configure <span>#默认安装在/usr/local/nginx </span> make make <span>install</span></code>
If no error is reported, after successful completion, it is best to take a look at the nginx installation directory
<code> whereis nginx </code>
After the installation is completed, you can enter /usr/local/ngin/sbin Start and stop nginx.
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });The above has introduced the nginx installation tutorial, including nginx content. I hope it will be helpful to friends who are interested in PHP tutorials.