Heim >Backend-Entwicklung >PHP-Tutorial >Nginx服务器的安装

Nginx服务器的安装

WBOY
WBOYOriginal
2016-07-29 08:59:44752Durchsuche

Nginx服务器的安装

Nginx服务器的安装,我在这里主要介绍两种方式。

一、下载安装包形式安装

1)安装包的下载地址:http://nginx.org/en/download.html 选择linux版本进行下载

在当下,最新的安装包版本为nginx-1.9.12.tar.gz 可点击下载。

2)在安装Nginx前,所依赖的其他条件,请自行安装,这里不再做详细介绍。

(ps:我的虚拟机当时配置的很全面,所以我也不知道需要啥,如果需要虚拟机配置可私信我)
3)解压缩nginx的源码并安装

# tar -zxvf nginx-1.3.16.tar.gz -C /usr/local/src/
# cd /usr/local/src/nginx-1.3.16/
# ./configure \
--conf-path=/etc/nginx/nginx.conf \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--user=nginx \
--group=nginx \
--with-http_ssl_module \
--with-http_flv_module \
--with-http_stub_status_module \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/tmp/nginx/client/ \
--http-proxy-temp-path=/var/tmp/nginx/proxy/ \
--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \
--with-pcre
# make && make install
# mkdir -p /var/tmp/nginx/client	
4)验证安装效果

检查是否安装成功

Nginx服务器的安装

启动Nginx

Nginx服务器的安装

验证Nginx是否成功启动

Nginx服务器的安装

二、Ubuntu在线安装

1)在线下载安装

sudo apt-get install nginx
2)验证安装效果

同第一类第4项

Nginx服务器的安装

以上就介绍了Nginx服务器的安装,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn