目录
一、Nginx概述
二、编译安装Nginx服务
1.安装Nginx服务
2. Nginx服务的基础命令
2.1开启nginx服务
2.2关闭nginx服务
2.3重载配置文件
2.4平滑升级
3.添加 Nginx 系统服务
3.1判断 Nginx 服务是否开启
3.2 方法一:将 nginx 服务添加到 chkconfig管理中
3.3 方法二:将服务加入system管理中
三、Nginx 服务的主配置文件
1.全局配置
2.I/O 事件配置
4.HTTP配置
四、访问状态统计配置
1.查看nginx 是否安装 HTTP_STUB_STATUS 模块
2. 修改 nginx.conf 配置文件,指定访问位置并添加 stub_status 配置
3.重启服务,访问测试
五、访问控制
1.基于授权的访问控制
1.1生成用户密码认证文件
1.2修改主配置文件相对应目录,添加认证配置项
1.3重启服务,访问测试
2.基于客户端的访问控制
六、配置nginx虚拟主机
1.基于域名的虚拟主机
1.1为虚拟主机准备网页文档
1.2 修改Nginx的配置文件
1.3重启服务,访问测试
2.基于IP的虚拟主机
3.基于端口的虚拟主机
Nginx是一款轻量级的Web服务器、反向代理服务器,由于它的内存占用少,启动极快,高并发能力强,单台物理服务器理论上可支持30000~50000个并发请求,在互联网项目中广泛应用。
Nginx相对于Apache的优点:
Apache 相对于Nginx 的优点:
systemctl disable --now firewalld
setenforce 0
#将Nginx软件包上传到/opt目录
cd /opt
rz -E
tar xf nginx-1.22.0.tar.gz
#安装编译器
yum -y install pcre-devel zlib-devel openssl-devel gcc gcc-c++ make
useradd -M -s /sbin/nologin nginx
cd /opt/nginx-1.22.0/
./configure --prefix=/usr/local/nginx \ #安装路径
--user=nginx \ #指定用户
--group=nginx \ #指定组
--with-http_stub_status_module #开启状态监控模块
make && make install
cd /usr/local/nginx/sbin
./nginx -v #查看Nginx安装版本
./nginx -V #查看Nginx安装时配置信息
ln -s /usr/local/nginx/sbin/nginx /usr/local/sbin/ #让系统识别nginx的操作命令
nginx -t #检查配置文件是否配置正确
#开启nginx服务
nginx 或 /usr/local/nginx/sbin/nginx
killall -0 nginx #查看nginx服务的状态
echo $? #返回0,nginx服务开启
0
netstat -lntp | grep nginx #查看nginx进程
cat /usr/local/nginx/logs/nginx.pid #查看nginx的进程号
#关闭nginx服务
方法一:
kill -3
方法二:
kill -s QUIT $(cat /usr/local/nginx/logs/nginx.pid)
方法三:
killall -3 nginx
#在不关闭服务的情况下,重载配置
kill -1
kill -s HUP
killall -1 <进程名>
killall -s HUP <进程名>
cd /opt
rz -E #将新软件包上传
tar xf nginx-1.24.0.tar.gz #解压软件包
cd /opt/nginx-1.24.0/
./configure --prefix=/usr/local/nginx \ #安装路径
--user=nginx \ #指定用户
--group=nginx \ #指定组
--with-http_stub_status_module
make #编译
cd /usr/local/nginx/sbin/
mv nginx nginx.old
cp /opt/nginx-1.24.0/objs/nginx /usr/local/nginx/sbin
./nginx -V
cd /opt/nginx-1.24.0
#平滑升级,即不停止服务的状态下升级
make upgrade
要保证当前 nginx 进程是通过 /usr/local/nginx/sbin/nginx 启动的,而不是通过查找环境变量中那个 nginx 命令启动的;或者先 killall nginx ,再/usr/local/nginx/sbin/nginx
或
kill -QUIT `cat /usr/local/nginx/logs/nginx.pid.oldbin`
方法一:
ps -aux | grep nginx #查看nginx服务进程
#统计nginx进程数,当大于2时,nginx服务开启
ps -aux | grep -v grep | grep -c nginx
方法二:
netstat -lntp | grep nginx #查看nginx进程
echo $? #返还值为0,nginx服务开启;返回值为1,nginx关闭。
方法三:
killall -0 nginx #查看nginx状态
echo $? #返还值为0,nginx服务开启;返回值为1,nginx关闭
vim /etc/init.d/nginx
#!/bin/bash
#chkconfig: - 99 20
#description:Nginx Service Control Script
COM="/usr/local/nginx/sbin/nginx"
PID="/usr/local/nginx/logs/nginx.pid"
case "$1" in
start)
$COM
;;
stop)
kill -s QUIT $(cat $PID)
;;
restart)
$0 stop
$0 start
;;
reload)
kill -s HUP $(cat $PID)
;;
*)
echo "Usage: $0 {start|stop|restart|reload}"
exit 1
esac
exit 0
chmod +x nginx.sh
chkconfig --add nginx #将nginx服务加入init.d
vim /lib/systemd/system/nginx.service
[Unit] #服务的说明
Description=nginx #描述服务
After=network.target #依赖服务,当依赖服务启动后再启动自定义服务
[Service] #服务运行的参数
Type=forking #后台运行形式,使用此启动类型应同时指定PIDFile=,以便systemd能够跟踪服务的主进程
PIDFile=/usr/local/nginx/logs/nginx.pid #pid文件路径
ExecStart=/usr/local/nginx/sbin/nginx #服务具体运行命令
ExecReload=/bin/kill -s HUP $MAINPID #重启命令
ExecStop=/bin/kill -s QUIT $MAINPID #停止命令
PrivateTmp=true #给服务分配独立的临时空间
[Install] #服务安装相关设置,可设置为多用户
WantedBy=multi-user.target
chmod 754 /lib/systemd/system/nginx.service
systemctl start nginx.service
systemctl enable nginx.service
主配置文件 /usr/local/nginx/conf/nginx.conf:
#user nobody; #运行用户,若编译时未指定则默认为 nobody
worker_processes 1; #工作进程数量,一般设置为和 CPU 核数一样;设置为auto,nginx将会自己获取这个数值
#error_log logs/error.log; #错误日志文件的位置
#pid logs/nginx.pid; #PID 文件的位置
worker_rlimit_nofile 60000; #设置所有worker进程最大可以打开的文件数,默认为1024
查看cpu方法:
lscpu
top 按数字1
cat /proc/cpuinfo
processor cpu数量
physical id 物理cpu
events {
use epoll; #使用 epoll I/O模型,2.6及以上版本的系统内核,建议使用epoll模型以提高性能
worker_connections 60000; #每个进程处理 60000 个连接
multi_accept on; #是否一次性将监听到的连接全接收进来,默认为off,关闭时一次接收一条连接
accept_mutex on; #默认为on,开启时表示以串行方式接入新连接,否则将通报给所有worker。这可能会浪费资源并产生不可预计的后果,例如惊群问题
}
设置系统进程连接数:
ulimit -a #查看系统连接数
修改系统连接数
ulimit -n <连接数>
vim /etc/security/limits.conf
* soft nofile 60000
* hard nofile 65535
reboot #重启生效
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;
##只在sendfile on时有效。调用tcp_cork方法,让数据包不会马上传送出去,等到数据包最大时,一次性的传输出去,这样有助于解决网络堵塞。默认为off。
#tcp_nopush on;
##连接保持超时时间,单位是秒
#keepalive_timeout 0;
keepalive_timeout 65;
##gzip模块设置,设置是否开启gzip压缩输出
#gzip on;
##Web 服务的监听配置
server {
##监听地址及端口
listen 80;
##站点域名,可以有多个,用空格隔开
server_name www.kgc.com;
##网页的默认字符集
charset utf-8;
##根目录配置
location / {
##网站根目录的位置/usr/local/nginx/html
root html;
##默认首页文件名
index index.html index.php;
}
##内部错误的反馈页面
error_page 500 502 503 504 /50x.html;
##错误页面配置
location = /50x.html {
root html;
}
}
}
location常见配置指令,root、alias、proxy_pass
root(根路径配置):root /var/www/html
请求www.kgc.com/test/1.html,会返回文件/var/www/html/test/1.html
alias(别名配置):alias /var/www/html
请求www.kgc.com/test/1.html,会返回文件/var/www/html/1.html
proxy_pass(反向代理配置)
日志格式设定:
通常web服务器放在反向代理的后面,这样就不能获取到客户的IP地址了,通过$remote_add拿到的IP地址是反向代理服务器的iP地址。反向代理服务器在转发请求的http头信息中,可以增加x_forwarded_for信息,用以记录原有客户端的IP地址和原来客户端的请求的服务器地址。
cat /opt/nginx-1.24.0/auto/options |grep YES
cd /usr/local/nginx/conf
cp nginx.conf nginx.conf.bak
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
server {
listen 80;
server_name www.benet.com;
charset utf-8;
location / {
root html;
index index.html index.php;
}
##添加 stub_status 配置##
location /status { #访问位置为/status
stub_status on; #打开状态统计功能
access_log off; #关闭此位置的日志记录
}
}
}
systemctl restart nginx
浏览器访问 http://192.168.88.40/status
Active connections:表示当前的活动连接数,即当前与 Nginx 服务器建立的连接数。
server accepts handled requests :表示已经处理的连接信息
三个数字依次表示服务器已接收的连接数;服务器成功处理的连接数;服务器累计处理的总请求数(在保持连接模式下,请求数量可能会大于连接数量)
Reading:表示当前正在从客户端读取数据的连接数。
Writing:表示当前正在向客户端写入数据的连接数。
Waiting:表示当前空闲并等待请求的连接数。
可 curl -Ls http://192.168.80.10/status 结合 awk与if 语句进行性能监控。
yum install -y httpd-tools
htpasswd -c /usr/local/nginx/passwd.db zhangsan
chown nginx /usr/local/nginx/passwd.db
chmod 400 /usr/local/nginx/passwd.db
vim /usr/local/nginx/conf/nginx.conf
......
server {
location / {
......
##添加认证配置##
auth_basic "secret"; #设置密码提示框文字信息
auth_basic_user_file /usr/local/nginx/passwd.db;
}
}
nginx -t
systemctl restart nginx
浏览器访问 http://192.168.88.60
访问控制规则如下:
vim /usr/local/nginx/conf/nginx.conf
......
server {
location / {
......
##添加控制规则##
allow 192.168.88.200; #允许访问的客户端 IP
deny all; #拒绝其它IP客户端访问
}
}
systemctl restart nginx
mkdir -p /usr/local/nginx/html/benet
mkdir -p /usr/local/nginx/html/accp
echo "welcome to benet web
" > /usr/local/nginx/html/benet/index.html
echo "welcome to accp web
" > /usr/local/nginx/html/accp/index.html
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
server {
listen 80;
server_name www.benet.com; #设置域名www.benet.com
charset utf-8;
access_log logs/www.benet.access.log; #设置日志名
location / {
root html/benet; #设置www.benet.com 的工作目录
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
server {
listen 80;
server_name www.accp.com; #设置域名www.accp.com
charset utf-8;
access_log logs/www.accp.access.log;
location / {
root html/accp;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
}
systemctl restart nginx
#为虚拟主机提供域名解析
echo "192.168.88.60 www.accp.com www.benet.com" >> /etc/hosts
ifconfig ens33:0 192.168.80.11 netmask 255.255.255.0
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
server {
listen 192.168.80.10:80; #设置监听地址192.168.80.10
server_name www.kgc.com;
charset utf-8;
access_log logs/www.kgc.access.log;
location / {
root /var/www/html/kgc;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
server {
listen 192.168.80.11:80; #设置监听地址192.168.80.11
server_name www.benet.com;
charset utf-8;
access_log logs/www.benet.access.log;
location / {
root /var/www/html/benet;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
}
systemctl restart nginx
浏览器访问
http://192.168.80.10
http://192.168.80.11
vim /usr/local/nginx/conf/nginx.conf
......
http {
......
server {
listen 192.168.80.10:8080; #设置监听 8080 端口
server_name www.kgc.com;
charset utf-8;
access_log logs/www.kgc.access.log;
location / {
root /var/www/html/kgc;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
server {
listen 192.168.80.10:8888; #设置监听 8888 端口
server_name www.benet.com;
charset utf-8;
access_log logs/www.benet.access.log;
location / {
root /var/www/html/benet;
index index.html index.php;
}
error_page 500 502 503 504 /50x.html;
location = 50x.html{
root html;
}
}
}
systemctl restart nginx
浏览器访问
http://192.168.80.11:8080
http://192.168.80.11:8888