当前位置: > Linux服务器 > nginx >

nginx学习研究(一)安装启动及调试

时间:2014-05-19 02:19来源:linux.it.net.cn 作者:IT网
序:从今天开始研究nginx。主要是工作中用到大量的nginx的安装调试及优化,希望可以系统的记录一下,以备以后不时之需。

 

 

【安装】

对于nginx不建议使用源来安装,最好自己编译。因为一般来说使用nginx的项目都比较灵活,而且基本上不同平台或系统的批量部署比较多。通过编辑安装可以比较效率的按照自己想要的方式进行批处理。对于运维管理人员来说编译是最好的选择。

nginx下载地址:http://nginx.org/

以最新的nginx-1.3.3为例,nginx的编译关键在于./configure 中的参数,我们来看一下nginx编译的参数详细列表解释:

先来看几个基本的参数:

--prefix=<path>  指定nginx的安装路径,如果没有指定,默认安装在/usr/local/nginx下。

--sbin-path=<path> nginx的可执行文件的安装路径,这个路径只能够在安装的时候指定,默认为nginx安装路径下的sbin目录下。

--conf-path=<path> 指定nginx的配置文件nginx.conf的路径,默认为<nginx>/conf/nginx.conf。

--pid-path=<path> 指定nginx.pid文件的路径,默认为<nginx>/logs/nginx.conf

--lock-path=<path> 指定nginx.lock路径

--error-log-path=<path> 指定错误日志的路径

--http-log-path=<path> 指定访问日志的路径。

--user=<user> 指定nginx的运行用户,默认为nobody

--group=<group> 指定nginx的运行组,默认为nobody

--with-http_stub_status_module 启用 "server status" 页

--with-openssl=<dir> 指定openssl库源路径

上面几种是比较常用的选项,一般来说我们用一些基本的配置来进行安装

[plain] view plaincopyprint?
  1. useradd www  
  2.   
  3. ./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_stub_status_module --with-openssl=/usr/local/openssl  
  4.   
  5. make && make install  


【调试】

安装完成后我们会在/usr/local/nginx下看到如下几个文件

conf    nginx默认配置文件存放目录

html    nginx默认的网站根目录

logs    nginx默认日志文件目录

sbin    nginx默认可执行文件目录

 

首先我们来尝试启动nginx,启动的命令如下:

/usr/local/nginx/sbin/nginx    执行过后如果没有任何提示,那么nginx可能就已经启动成功

当然也可以使用ps -ef | grep nginx 来查看进程中是否有nginx

这是可以在浏览器中输入http://IP来检查nginx能否访问。

在html中默认有一个欢迎index.html

 

[html] view plaincopyprint?
  1. <html>  
  2. <head>  
  3. <title>Welcome to nginx!</title>  
  4. </head>  
  5. <body bgcolor="white" text="black">  
  6. <center><h1>Welcome to nginx!</h1></center>  
  7. </body>  
  8. </html>  


 

如果安装成功,你将能够看到Welcome to nginx!字样

 

完全停止nginx的方法如下:

方法一:

[plain] view plaincopyprint?
  1. killall nginx  
方法二:
[plain] view plaincopyprint?
  1. pkill -9 nginx  

 

重启nginx:

[plain] view plaincopyprint?
  1. /usr/local/nginx/sbin/nginx -s reload  

 

平滑重启nginx:

[plain] view plaincopyprint?
  1. kill -HUP `cat /usr/local/nginx/logs/nginx.pid`  
 主要用于修改了配置文件后,重新读取配置文件而不关闭服务。

 

 

测试nginx配置文件:

[plain] view plaincopyprint?
  1. /usr/local/nginx/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

 

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容