Heim >Backend-Entwicklung >PHP-Tutorial >Ubuntu1404安装nginx稳定版本步骤

Ubuntu1404安装nginx稳定版本步骤

WBOY
WBOYOriginal
2016-07-29 09:04:261078Durchsuche

因为我的系统是刚装的,什么包都没有!

1:首先更新所有的包

<code> sudo apt-get update
</code>

2:跳转到系统的Downloads文件夹(我是下载到Downloads文件夹下面)

<code>cd /home/用户名/Downloads/
</code>

3:从官网下载稳定版本的nginx

<code>wget http://nginx.org/download/nginx-1.8.1.tar.gz
</code>

4:解压

<code>tar zxvf nginx-1.8.1.tar.gz
</code>

5:进入解压过得文件夹

<code>cd nginx-1.8.1
</code>

6:执行命令

<code>./configure
发现报错   原因是缺少pcre library
</code>

7:重新进入Downloads文件夹下载pcre

<code>wegt http://sourceforge.net/projects/pcre/files/pcre/8.31/pcre-8.31.tar.gz
</code>

8:解压pcre

<code>tar zxvf pcre-8.31.tar.gz
</code>

9:进入解压过得文件夹

<code>cd pcre-8.31
</code>

10:执行命令

<code>./configure     这句成功
make            这句会报错,编译不通过,所以需要安装g++
</code>

11:安装g++

<code>sudo apt-get install g++
</code>

12:重新进入pcre-8.31文件夹并执行命令

<code>./configure
make
sudo make install   报错缺少zlib包
</code>

13:安装zlib包

<code>sudo apt-get install zlib1g-dev
</code>

14:重新进入pcre-8.31文件夹并执行命令

<code>./configure
make
sudo make install
</code>

15:重新进入nginx-1.8.1文件夹执行命令

<code>./configure
make
sudo make install
</code>

16:启动nginx

<code>sudo /usr/local/nginx/sbin/nginx
启动成功之后登陆localhost看看是否安装成功!http://localhost:80
</code>

17:关闭nginx

<code>sudo killall -9 nginx
</code>
').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了Ubuntu1404安装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
Vorheriger Artikel:mac搭建PHP环境Nächster Artikel:PHP_Const