服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - Nginx - Ubuntu16.04.1 安装Nginx的方法

Ubuntu16.04.1 安装Nginx的方法

2019-11-19 17:40雨~桐 Nginx

这篇文章主要介绍了Ubuntu16.04.1 安装Nginx的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器。 Nginx 是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,第一个公开版本0.1.0发布于2004年10月4日。其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。

安装Nginx依赖库

安装gcc g++的依赖库

ubuntu平台可以使用如下命令。

?
1
2
3
apt-get install build-essential
 
apt-get install libtool

centeros平台可以使用如下命令。

centos平台编译环境使用如下指令

安装make:

?
1
yum -y install gcc automake autoconf libtool make

安装g++:

?
1
yum install gcc gcc-c++  

安装 pcre依赖库(http://www.pcre.org/)

?
1
2
3
sudo apt-get update
 
sudo apt-get install libpcre3 libpcre3-dev

安装 zlib依赖库(http://www.zlib.net)

?
1
apt-get install zlib1g-dev

安装 ssl依赖库

?
1
apt-get install openssl

安装Nginx(http://nginx.org)

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#下载最新版本:
 
wget http://nginx.org/download/nginx-1.11.3.tar.gz
 
#解压:
 
tar -zxvf nginx-1.11.3.tar.gz
 
#进入解压目录:
 
cd nginx-1.11.3
 
#配置:
 
./configure --prefix=/usr/local/nginx
 
#编辑nginx:
 
make
 
注意:这里可能会报错,提示“pcre.h No such file or directory”,具体详见:http://stackoverflow.com/questions/22555561/error-building-fatal-error-pcre-h-no-such-file-or-directory
 
需要安装 libpcre3-dev,命令为:sudo apt-get install libpcre3-dev
 
#安装nginx:
 
sudo make install
 
#启动nginx:
 
sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
 
注意:-c 指定配置文件的路径,不加的话,nginx会自动加载默认路径的配置文件,可以通过 -h查看帮助命令。
 
#查看nginx进程:
 
ps -ef|grep nginx

Nginx常用命令

启动 Nginx

?
1
2
3
/usr/local/nginx/sbin/nginx
 
./sbin/nginx 

停止 Nginx

?
1
2
3
./sbin/nginx -s stop
 
./sbin/nginx -s quit

-s都是采用向 Nginx 发送信号的方式。

Nginx重新加载配置

?
1
./sbin/nginx -s reload

指定配置文件

?
1
./sbin/nginx -c /usr/local/nginx/conf/nginx.conf

-c表示configuration,指定配置文件

查看 Nginx 版本

有两种可以查看 Nginx 的版本信息的参数。第一种如下:

?
1
2
3
./sbin/nginx -v
 
nginx: nginx version: nginx/1.0.0

另一种显示的是详细的版本信息:

?
1
2
3
4
5
6
7
8
9
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -V
 
nginx: nginx version: nginx/1.0.0
 
nginx: built by gcc 4.3.3 (Ubuntu 4.3.3-5ubuntu4)
 
nginx: TLS SNI support enabled
 
nginx: configure arguments: --with-http_ssl_module --with-openssl=/home/luming/openssl-1.0.0d/

检查配置文件是否正确

?
1
2
3
4
5
6
7
8
9
poechant@ubuntu:/usr/local/nginx$ ./sbin/nginx -t
 
nginx: [alert] could not open error log file: open() "/usr/local/nginx/logs/error.log" failed (13: Permission denied)
 
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
 
2012/01/09 16:45:09 [emerg] 23898#0: open() "/usr/local/nginx/logs/nginx.pid" failed (13: Permission denied)
 
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed

如果出现如上的提示信息,表示没有访问错误日志文件和进程,可以sudo(super user do)一下:

?
1
2
3
4
5
poerchant@ubuntu:/usr/local/nginx$ sudo ./sbin/nginx -t
 
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
 
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

如果显示如上,则表示配置文件正确。否则,会有相关提示。

显示帮助信息

?
1
poechant@ubuntu:/user/local/nginx$ ./sbin/nginx -h

或者:

?
1
poechant@ubuntu:/user/local/nginx$ ./sbin/nginx -?

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/piscesLoveCc/p/5794926.html

延伸 · 阅读

精彩推荐
  • NginxNginx location 和 proxy_pass路径配置问题小结

    Nginx location 和 proxy_pass路径配置问题小结

    本文是基于 location 的匹配末尾是否配置 / 和 proxy_pass 末尾是否配置 / ,进行测试,完全还原了整个测试过程,本文给大家介绍Nginx location 基本配置及相关配...

    自由早晚乱余生18742021-09-24
  • NginxNginx Rewrite使用场景及代码案例详解

    Nginx Rewrite使用场景及代码案例详解

    这篇文章主要介绍了Nginx Rewrite使用场景及代码案例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可...

    盗哥泡茶去了11862020-09-27
  • Nginxnginx rewrite 伪静态配置参数和使用例子

    nginx rewrite 伪静态配置参数和使用例子

    nginx下伪静态配置参数详细说明,使用nginx的朋友,nginx rewrite 伪静态配置参数和使用例子 附正则使用说明 ...

    服务器之家3102019-10-08
  • Nginxnginx ssl免密码重启教程详解

    nginx ssl免密码重启教程详解

    这篇文章给大家介绍了nginx 如何启动以及nginx ssl 免密码重启 的方法,非常不错,具有参考借鉴价值,需要的朋友参考下吧 ...

    mrr4272019-11-19
  • NginxNginx动静分离实现案例代码解析

    Nginx动静分离实现案例代码解析

    这篇文章主要介绍了Nginx动静分离实现案例代码解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参...

    盗哥泡茶去了3382020-09-27
  • Nginx如何优化Nginx的处理性能

    如何优化Nginx的处理性能

    Nginx是一个很强大的高性能Web和反向代理服务,它具有很多非常优越的特性,在连接高并发的情况下,Nginx是Apache服务不错的替代品。其特点是占有内存少,...

    Dockone.io5142020-12-11
  • Nginx通过Nginx规则重写URL去掉index.php不显示index.php

    通过Nginx规则重写URL去掉index.php不显示index.php

    Nginx不仅占用内存少,并发能力强,而且拓展功能丰富,可以通过安装模板来强化功能,也能通过规则优化,优化服务器并发处理能力,是建站的不二之选...

    Genius日记5872020-10-16
  • Nginx利用nginx和腾讯云免费证书制作https的方法

    利用nginx和腾讯云免费证书制作https的方法

    这篇文章主要介绍了利用nginx和腾讯云免费证书制作https的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧 ...

    dalaoyang5992019-12-30