Heim  >  Artikel  >  Backend-Entwicklung  >  centos6.5下安装nginx

centos6.5下安装nginx

WBOY
WBOYOriginal
2016-08-08 09:30:34898Durchsuche

1.安装pcre-8.36.tar.gz

tar -zxvf pcre-8.36.tar.gz
cd pcre-8.36
./configure --prefix=/usr/local/pcre
make
make install

2.安装zlib-1.2.8.tar.gz 

tar -zxvf zlib-1.2.8.tar.gz
cd zlib-1.2.8
./configure --prefix=/usr/local/zlib
make
make install

3.安装openssl-1.0.2.tar.gz 

tar -zxvf openssl-1.0.2.tar.gz 

4.安装nginx-1.6.2.tar.gz

./configure --prefix=/usr/local/nginx --conf-path=/usr/local/nginx/nginx.conf --pid-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=/usr/local/soft/pcre-8.36 --with-zlib=/usr/local/soft/zlib-1.2.8 --with-openssl=/usr/local/soft/openssl-1.0.2
make
make install

--with-pcre=/usr/local/soft/pcre-8.36 指的是pcre-8.36 的源码路径。--with-zlib=/usr/local/soft/zlib-1.2.8 指的是zlib-1.2.8 的源码路径。

--with-openssl=/usr/local/soft/openssl-1.0.2 指的是openssl-1.0.2 的源码路径。

5.启动nginx并验证是否启动

启动nginx

/usr/local/nginx/sbin/nginx 
访问nginx

通过浏览器访问 http://你的IP 出现如下界面则证明启动成功


以上就介绍了centos6.5下安装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