Home Backend Development PHP Tutorial nginx installation tutorial nginx apache nginx php nginx rewrite

nginx installation tutorial nginx apache nginx php nginx rewrite

Jul 29, 2016 am 08:54 AM
nginx

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>
Copy after login

2. Install Nginx

Before installation, it is best to check whether nginx is already installed

<code>find -<span>name</span> nginx </code>
Copy after login

If the system has already installed nginx, then uninstall it first

<code>yum <span>remove</span> nginx </code>
Copy after login

First enter /usr/ local directory

<code><span>cd</span> /usr/local</code>
Copy after login

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>
Copy after login

Unzip the nginx compressed package

<code>tar -zxvf nginx-<span>1.8</span><span>.1</span><span>.tar</span><span>.gz</span></code>
Copy after login

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>
Copy after login

If no error is reported, after successful completion, it is best to take a look at the nginx installation directory

<code> whereis nginx  </code>
Copy after login

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.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to allow external network access to tomcat server How to allow external network access to tomcat server Apr 21, 2024 am 07:22 AM

How to allow external network access to tomcat server

What are the nginx start and stop commands? What are the nginx start and stop commands? Apr 02, 2024 pm 08:45 PM

What are the nginx start and stop commands?

How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

How to run thinkphp

What are the differences between tomcat and nginx What are the differences between tomcat and nginx Dec 27, 2023 pm 05:07 PM

What are the differences between tomcat and nginx

Welcome to nginx!How to solve it? Welcome to nginx!How to solve it? Apr 17, 2024 am 05:12 AM

Welcome to nginx!How to solve it?

How to register phpmyadmin How to register phpmyadmin Apr 07, 2024 pm 02:45 PM

How to register phpmyadmin

How to deploy nodejs project to server How to deploy nodejs project to server Apr 21, 2024 am 04:40 AM

How to deploy nodejs project to server

How to solve the problem of nginx when accessing the website How to solve the problem of nginx when accessing the website Apr 02, 2024 pm 08:39 PM

How to solve the problem of nginx when accessing the website

See all articles