Nginx安装、配置及使用总结

版权声明:本文为博主原创文章,未经博主允许不得转载。

Nginx的安装、配置及使用总结:

Nginx是一个高性能的HTTP及反向代理服务器,也是IMAP/POP3/SMTP代理服务器。在高并发情况下,Nginx突出了它的高性能和稳定性,对比同类服务器技术而言,它是很多国内大中型网站首选的服务器环境。和往常一样,在总结一门新技术时都会先从它的环境配置及使用开始的,下面就以Nginx的安装、配置及简单的使用为导向进行总结说明。

l   Nginx安装

l   Nginx配置

l   php-fpm配置

l   Nginx使用

l   问题及解决

一、Nginx安装

1、从官网(http://www.nginx.org)下载最新的Nginx并解压,进入解压目录进行相关安装操作即可,具体如下:

$ tar –xvf  nginx-1.8.1.tar

$ cd  nginx-1.8.1

$ sudo  ./configure

$ sudo  make

$sudo  make install

2、安装之后,使用nginx –v验证下是否安装完成:

$ nginx -V

3、开启nginx服务,并打开浏览器地址:127.0.0.1

$ sudo  ./nginx  // 开启服务

上图说明,Nginx环境已经安装并运行正常,接下来需要对nginx.conf进行几项重要的配置了。

二、Nginx配置

一般情况下,我们只需要对conf下的nginx.conf进行基本配置即可,但有时我们也需要特殊的配置,这个在下面会介绍到,我们修改默认的nginx.conf(最后备份下方便回滚)配置如下,注释部分即为修改内容(实际使用时,去掉注释):

1、修改的nginx.conf配置文件

#user  nobody;

worker_processes  auto; #根据设备cpu的个数 自动选择

#error_log  /nginx/nginx-1.8.1/logs/error.log;

#error_log  logs/error.log  notice;

#error_log  logs/error.log  info;

#pid        logs/nginx.pid;

events {

worker_connections  1024; #允许请求的连接数

}

http {

include       mime.types;

default_type  application/octet-stream;

#log_format main  ‘$remote_addr - $remote_user[$time_local] "$request" ‘

#                  ‘$status $body_bytes_sent"$http_referer" ‘

#                  ‘"$http_user_agent""$http_x_forwarded_for"‘;

#access_log logs/access.log  main;

sendfile        on; #允许发送文件

#tcp_nopush     on;

#keepalive_timeout  0;

keepalive_timeout  65; #会话超时时间

#gzip on;

server {

listen       80; #监听的端口

server_name  localhost; #服务端域名或ip

#charset koi8-r;

#access_log  logs/host.access.log  main;

location / { #Web服务的根目录

root        /project/cwteam/cwteam/cwteam;

index  index.html index.htm index.php;# 加入了html和php

#如果文件不存在则尝试TP解析

try_files  $uri /index.php$uri;

}

error_page  404              /404.html;

# redirect server error pages to thestatic page /50x.html

#

error_page   500 502 503 504  /50x.html; #可自定义错误页面

location = /50x.html {

root   html;

}

# proxy the PHP scripts to Apachelistening on 127.0.0.1:80

#

#location ~ \.php$ {

#   proxy_pass   http://127.0.0.1;

#}

# pass the PHP scripts to FastCGIserver listening on 127.0.0.1:9000

#

#location ~ \.php$ {

#   root          /project/cwteam/cwteam/cwteam;

#   fastcgi_pass   127.0.0.1:9000;

#   fastcgi_index  index.php;

#   fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

#   include        fastcgi_params;

#}

location ~ \.php {  #默认nginx不支持php拓展 这里把它添加上

root        /project/cwteam/cwteam/cwteam;

fastcgi_pass   127.0.0.1:9000;

fastcgi_index  index.php;

fastcgi_intercept_errors on;

#设置PATH_INFO,注意fastcgi_split_path_info已经自动改写了fastcgi_script_name变量,

#后面不需要再改写SCRIPT_FILENAME,SCRIPT_NAME环境变量,所以必须在加载fastcgi.conf之前设置

fastcgi_split_path_info  ^(.+\.php)(/.*)$;

fastcgi_param  PATH_INFO $fastcgi_path_info;

#加载Nginx默认"服务器环境变量"配置

include        fastcgi.conf;

}

# deny access to .htaccess files, ifApache‘s document root

# concurs with nginx‘s one

#

#location ~ /\.ht {

#   deny  all;

#}

}

# another virtual host using mix of IP-,name-, and port-based configuration

#

#server {

#    listen       8000;

#   listen       somename:8080;

#   server_name  somename  alias another.alias;

#   location / {

#       root   html;

#       index  index.html index.htm;

#   }

#}

# HTTPS server

#

#server {

#   listen       443 ssl;

#   server_name  localhost;

#   ssl_certificate      cert.pem;

#   ssl_certificate_key  cert.key;

#   ssl_session_cache   shared:SSL:1m;

#   ssl_session_timeout  5m;

#   ssl_ciphers  HIGH:!aNULL:!MD5;

#   ssl_prefer_server_ciphers  on;

#   location / {

#       root   html;

#       index  index.html index.htm;

#   }

#}

}

注:

默认Nginx不支持对php的拓展,所以需要添加对其的拓展支持,具体查看上岸注释内容说明。

2、测试下配置是否正常

$ sudo ./nginx  -t

三、php-fpm配置

参考:

http://blog.csdn.net/why_2012_gogo/article/details/51112477

四、Nginx使用

正如上面的Nginx.conf配置,Web的服务根路径已经修改为自定义项目了,所以可以直接输入访问即可,而我的项目采用了ThinkPHP开源框架,步骤如下:

1、添加html页面

<!DOCTYPEhtml>

<html>

<head>

<metacharset="UTF-8">

</head>

<bodystyle="background-color:#9999;">

<div>Hello Nginx!</div>

</body>

</html>

2、添加控制器

public function index() {

$this->display();

}

这个控制器只是展示上面的页面哦!

3、浏览器的结果

五、问题及解决

在上面的整个过程中,遇到了些许问题,具体可参看如下:

1、nginx:[error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No suchfile or directory)

上面的报错,是在使用nginx–s reload时发生的(前提是先nginx –s stop之后),原因是reload是检查正在运行的nginx服务,stop之后不能重新加载,只要nginx再次开启,就可以使用reload了,所以这个问题不会影响我们使用nginx,如果就是要解决的话,可以这样:

$ nginx –c /usr/local/nginx/conf/nginx.conf (关联位置)

注:

使用nginx -c的参数指定nginx.conf文件的位置。

2、[error] 3846#0: *3 kevent()reported that connect() failed (61: Connection refused) while connecting toupstream, client: 127.0.0.1, server: localhost, request: "GET /index.phpHTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host:"localhost"

报错问题:因为php-fpm进程服务未启动,所以需要开启之外,还需要对php-fpm.conf中的error_log 和pid进行配置,否则会导致php-fpm因为找不到位置而启动不了。

解决方法:

首先,添加php-fpm配置文件:

$ sudo cp /private/etc/php-fpm.conf.default /private/etc/php-fpm.conf (复制一份默认配置文件并修改)

其次,修改php-fpm.conf配置文件:

去掉前面的注释,将php-fpm.conf中的error_log修改为/var/log/php-fpm.log,而pid修改为/var/run/php-fpm.pid即可。

最后,启动php-fpm:

$ sudo php-fpm (启动)

注:

当启动时,报服务已经在使用,不能进行绑定,那么请使用kill -9 pid强制杀掉重新启动即可。

3、SQLSTATE[HY000][2002] No such file or directory

上面的报错,是本人在刚搭建好的Nginx环境中试运行PHP访问数据时出现错误了,原因是因为Nginx的数据库连接未打开,即使Mysql服务运行正常,Nginx服务也找不到数据库,解决的办法:

$ sudo find / -namemysql.sock(数据库连接文件)

注:已经发现了mysql.sock文件,从目录可看出这个.sock文件是之前系统中

xampp继承环境所持有的数据库Mysql连接文件,所以简单了,只需要将该文件映射关联到/var/mysql下即可。

$ ls /var/mysql (检查是否存在,若不存在就创建)

$ sudo mkdir/var/mysql (创建完成之后,使用ln关联)

$ sudo ln –s /Applications/XAMPP/xamppfiles/var/mysql/mysql.sock    /var/mysql/mysql.sock(关联之后 刷新页面即可)

好了,到这里,我们已经介绍了Nginx的安装、基本配置及简单的验证使用了,马上开始Nginx的高效之旅吧!

时间: 2024-10-20 18:23:15

Nginx安装、配置及使用总结的相关文章

Nginx安装配置(转)

Nginx 安装配置 Nginx("engine x")是一款是由俄罗斯的程序设计师Igor Sysoev所开发高性能的 Web和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器. 在高连接并发的情况下,Nginx是Apache服务器不错的替代品. Nginx 安装 系统平台:CentOS release 6.6 (Final) 64位. 一.安装编译工具及库文件 yum -y install make zlib zlib-devel gcc-c++ libtoo

VMware Linux 下 Nginx 安装配置 - nginx.conf 配置 [负载两个 Tomcat] (三)

首先启动Nginx 1. 转到 nginx 目录: /usr/local/nginx; 启动 nginx: /usr/local/nginx/nginx ubuntu 前要加 sudo; 关健配置 http 配置块下,一般设置在 zgip on 下: upstream localhost { #绿色对应 #ip_hash; server localhost:8090; server localhost:8080; } server / { location / { proxy_connect_t

Redhat下Nginx安装配置

1.下载Nginx curl -O http://nginx.org/download/nginx-1.7.3.tar.gz -o /home/tango 2.安装Nginx 解压 tar -zxvf /home/tango/nginx-1.7.3.tar.gz /home/tango/nginx-1.7.3-setup 准备依赖 yum install pcre-devel yum install openssl-devel 编译,进入/home/tango/nginx-1.7.3-setup

saltstack之多节点nginx安装配置

多节点nginx安装配置 定义多节点 cd /srv/salt vim top.sls base:  'server4.lalala.com':    - nginx.install  'server1.lalala.com':    - nginx.install 把要共享的文件放在指定目录 [[email protected] files]# pwd /srv/salt/nginx/files [[email protected] files]# ls n ginx-1.10.1.tar.g

FastDFS+Nginx安装配置

FastDFS+Nginx安装配置 1.系统环境 最小化安装的RedHat 6.4 fastdfs版本:FastDFS_v3.06.tar.gz nginx版本:nginx-1.0.11.tar.gz fastdfs-nginx-module版本:fastdfs-nginx-module_v1.10.tar.gz tracker1:192.168.199.126 tracker2:192.168.199.127 storage1:192.168.199.128 storage2: 192.168

1.Nginx安装配置

1.Nginx安装配置 Nginx("engine x")是一款是由俄罗斯的程序设计师Igor Sysoev所开发高性能的 Web和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器. 在高连接并发的情况下,Nginx是Apache服务器不错的替代品 Nginx 安装 系统平台:CentOS release 6.6 (Final) 64位. 一.安装编译工具及库文件 yum -y install make zlib zlib-devel gcc-c++ libtoo

Nginx安装配置及调优

Nginx安装配置及调优 ? 一.安装Nginx ? 1.安装环境 [[email protected] ~]# yum –y install gcc pcre-devel openssl-devel 2.创建一个用户启动nginx [[email protected] ~]# useradd –s /sbin/nologin nginx 3.安装(不用的装模块不装) [[email protected] nginx-1.12.2]# ./configure \--prefix=/usr/loc

Nginx安装配置|Nginx反向代理|Nginx支持HTTPS|Nginx重定向

Nginx安装配置 可以直接看到最下面的HTTPS. Nginx安装 我的系统如下: No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 16.04.3 LTS Release: 16.04 Codename: xenial 安装(如果有apache服务器, 建议卸载了, 或者改Nginx的默认端口): sudo apt-get install nginx 此时已经开启了80端口, 并且配置处在etc/

nginx安装配置

一.下载Nginx源文件 进入nginx官网下载nginx的稳定版本,我下载的是1.10.0. 下载:wget http://nginx.org/download/nginx-1.10.0.tar.gz 解压:tar -zxvf nginx-1.10.0.tar.gz 二.检查安装依赖项 执行下面的命令安装nginx的依赖库: yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel11 三.配置Nginx安

【转】Nginx 安装配置

Nginx("engine x")是一款是由俄罗斯的程序设计师Igor Sysoev所开发高性能的 Web和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 代理服务器. 在高连接并发的情况下,Nginx是Apache服务器不错的替代品. Nginx 安装 系统平台:CentOS release 6.6 (Final) 64位. 一.安装编译工具及库文件 yum -y install make zlib zlib-devel gcc-c++ libtool  openssl