01、Nginx介绍及编译安装

  1. Nginx (engine x) 是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP服务器。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。
  2. 其将源代码以类BSD许可证的形式发布,因它的稳定性、丰富的功能集、示例配置文件和低系统资源的消耗而闻名。2011年6月1日,nginx 1.0.4发布。
  3. Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:百度、京东、新浪、网易、腾讯、淘宝等。

安装Nginx

[root@tiejiang ~]# yum -y install gcc gcc-c++ wget pcre pcre-devel zlib zlib-devel  #安装依赖

[root@tiejiang ~]# /etc/init.d/iptables stop   #关闭防火墙

[root@tiejiang ~]# cd /usr/local/src/

[root@tiejiang src]# wget http://nginx.org/download/nginx-1.14.0.tar.gz

[root@tiejiang src]# tar zxvf nginx-1.14.0.tar.gz

[root@tiejiang src]# cd nginx-1.14.0

[root@tiejiang nginx-1.14.0]# ./configure --prefix=/usr/local/nginx

[root@tiejiang nginx-1.14.0]# make && make install  #echo $?

[root@tiejiang nginx-1.14.0]# cd /usr/local/nginx/

[root@tiejiang nginx]# ./sbin/nginx   #启动该nginx

打开浏览器,访问127.0.0.1,如过你是远程访问的服务器或者虚拟机,使用对应的IP地址。nginx默认的端口号设置就是80。

  1.   nginx path prefix: "/usr/local/nginx"
  2.   nginx binary file: "/usr/local/nginx/sbin/nginx"
  3.   nginx modules path: "/usr/local/nginx/modules"
  4.   nginx configuration prefix: "/usr/local/nginx/conf"
  5.   nginx configuration file: "/usr/local/nginx/conf/nginx.conf"
  6.   nginx pid file: "/usr/local/nginx/logs/nginx.pid"
  7.   nginx error log file: "/usr/local/nginx/logs/error.log"
  8.   nginx http access log file: "/usr/local/nginx/logs/access.log"
  9.   nginx http client request body temporary files: "client_body_temp"
  10.   nginx http proxy temporary files: "proxy_temp"
  11.   nginx http fastcgi temporary files: "fastcgi_temp"
  12.   nginx http uwsgi temporary files: "uwsgi_temp"
  13.   nginx http scgi temporary files: "scgi_temp"

http://www.tiejiang.org/system/linux-operation/page/2

[root@panyu001 nginx]# ./sbin/nginx
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
[root@panyu001 ~]# yum install -y net-tools
[root@panyu001 ~]# netstat -antp | grep nginx
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      877/nginx: master p 
[root@panyu001 ~]# yum install -y procps procps-ng
[root@panyu001 ~]# ps aux |grep nginx
root       2618  0.0  0.0  20548   624 ?        Ss   21:35   0:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody     2619  0.0  0.3  22992  3208 ?        S    21:35   0:00 nginx: worker process
nobody     2620  0.0  0.3  22992  3208 ?        S    21:35   0:00 nginx: worker process
root       2660  0.0  0.0 112720   980 pts/0    S+   21:39   0:00 grep --color=auto nginx
[root@panyu001 ~]# /etc/init.d/nginx restart
Restarting nginx (via systemctl):                          [  确定  ]
[root@panyu001 html]# curl 127.0.0.1/test.php -I
HTTP/1.1 200 OK
Server: nginx/1.14.0
Date: Fri, 07 Dec 2018 14:36:06 GMT
Content-Type: text/html; charset=UTF-8
Connection: keep-alive
X-Powered-By: PHP/5.6.32
 

systemctl stop firewalld  #或者直接 disable      systemctl disable firewalld

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值