千寻简文库已开源,Gitee与GitHub搜索chihiro-doc
,包含笔记源文件.md
,以及PDF版本方便阅读,文库采用精美主题,阅读体验更佳,如果文章对你有帮助请帮我点一个Star
~
更新:支持在线阅读文章,根据发布日期分类。
系统版本:CentOS 7
cat /etc/redhat-release
Nginx版本:1.20.2
查看命令:
[root@localhost sbin]# whereis nginx
nginx: /usr/local/nginx
[root@localhost sbin]# cd /usr/local/nginx/sbin/
[root@localhost sbin]# ./nginx -v
nginx version: nginx/1.20.2
yum版本:3.4.3
yum -v
nginx
、CentOS
、安装教程
在安装Nginx之前安装这些软件包是因为Nginx使用了一些功能和模块,这些功能和模块需要这些软件包中的文件和库来支持和编译。
安装这些软件包是确保在编译Nginx时拥有必要的依赖项,以便支持Nginx的各种功能和模块,尤其是对于HTTPS、压缩和正则表达式等功能的支持。
# 一键安装上面四个依赖
[root@localhost ~]# yum -y install gcc pcre-devel zlib-devel openssl openssl-devel
Complete!
查看可下载的版本:
http://nginx.org/download/
下载
# 切换目录
[root@localhost ~]# cd /
# 创建一个文件夹
[root@localhost ~]# mkdir -p /www/server/nginx
# 切换目录
[root@localhost ~]# cd /www/server/nginx
# 下载
[root@localhost nginx]# wget http://nginx.org/download/nginx-1.20.2.tar.gz
# 解压
[root@localhost nginx]# tar -xvf nginx-1.20.2.tar.gz
【可网络请求的服务器忽略此步骤】如果登录的是堡垒机,不允许发起网络请求下载,直接请求文件网址进行下载上传到我们创建的目录,堡垒机工具可以使用xftp,可通过堡垒机直接上传到指定目录。
http://nginx.org/download/nginx-1.20.2.tar.gz
上传完成后查看目录文件
# 查看路径
[root@localhost nginx]# pwd
/www/server/nginx
# 查看文件是否上传成功,大小与网页标注一致
[root@localhost nginx]# ll
total 1040
-rw-r--r-- 1 root root 1062124 Nov 29 15:56 nginx-1.20.2.tar.gz
# 解压
[root@localhost nginx]# tar -xvf nginx-1.20.2.tar.gz
扩展知识:
/usr/local/nginx
是指将Nginx安装到/usr/local/nginx
目录下。--prefix
选项允许你指定Nginx的安装根目录,你可以根据自己的需求选择不同的路径。# 进入nginx目录
[root@localhost nginx]# cd /www/server/nginx
# 进入目录
[root@localhost nginx]# cd nginx-1.20.2
# 执行命令:配置编译Nginx的安装选项
[root@localhost nginx-1.20.2]# ./configure --prefix=/usr/local/nginx
# 执行make命令
[root@localhost nginx-1.20.2]# make
# 执行make install命令
[root@localhost nginx-1.20.2]# make install
# 备份Nginx配置文件
[root@localhost conf]# cp /usr/local/nginx/conf/nginx.conf /usr/local/nginx/conf/nginx.conf.bak
# 打开配置文件
[root@localhost conf]# vim /usr/local/nginx/conf/nginx.conf
[root@localhost nginx]# cd /usr/local/nginx/sbin/
[root@localhost sbin]# ./nginx
安装完成一般常用命令
首先进入 sbin 目录
[root@localhost sbin]# cd /usr/local/nginx/sbin
启动 Nginx
[root@localhost sbin]# ./nginx
停止 Nginx
[root@localhost sbin]# ./nginx -s stop
重新加载 Nginx
[root@localhost sbin]# ./nginx -s reload
查看 Nginx 版本
[root@localhost sbin]# ./nginx -v
[root@localhost sbin]# ps -ef | grep nginx
root 24247 1 0 16:08 ? 00:00:00 nginx: master process ./nginx
nobody 24248 24247 0 16:08 ? 00:00:00 nginx: worker process
root 24250 21480 0 16:11 pts/0 00:00:00 grep --color=auto nginx
/usr/local/nginx/sbin/nginx -s reload -c /usr/local/nginx/conf/nginx.conf
/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
#定配置文件进行重启
[root@localhost sbin]# /usr/local/nginx/sbin/nginx -s reload -c /usr/local/nginx/conf/nginx.conf
#检测文件是否配置正确
[root@localhost sbin]# /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
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
# 创建日志目录
[root@localhost sbin]# mkdir -p /var/log/nginx
#建立软链接
[root@localhost sbin]# ln -s /usr/local/nginx/sbin/nginx /usr/sbin/
#启动
[root@localhost sbin]# nginx
#查看nginx版本
[root@localhost ~]# nginx -v
nginx version: nginx/1.21.0
i
键进入编辑模式,修改配置文件,按Esc
键,然后输入:wq
并按Enter
键以保存#进入目录
[root@localhost system]# cd /usr/lib/systemd/system/
#创建文件
[root@localhost system]# touch nginx.service
#编辑文件内容
[root@localhost system]# vi /usr/lib/systemd/system/nginx.service
#赋予可执行的权限
[root@localhost system]# chmod +x /usr/lib/systemd/system/nginx.service
[Unit] #对服务的说明
Description=nginx - high performance web server #描述服务
After=network.target remote-fs.target nss-lookup.target #描述服务类别
[Service] #服务的一些具体运行参数的设置
Type=forking #后台运行的形式
PIDFile= /usr/local/nginx/logs/nginx.pid #PID文件的路径
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf #启动准备
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf #启动命令
ExecReload=/usr/local/nginx/sbin/nginx -s reload #重启命令
ExecStop=/usr/local/nginx/sbin/nginx -s stop #停止命令
ExecQuit=/usr/local/nginx/sbin/nginx -s quit #快速停止
PrivateTmp=true #给服务分配临时空间
[Install]
WantedBy=multi-user.target #服务用户的模式
[root@localhost ~]# cat /usr/lib/systemd/system/nginx.service
[Unit]
Description=nginx - high performance web server
After=network.target remote-fs.target nss-lookup.target
[Service]
Type=forking
PIDFile= /usr/local/nginx/logs/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/usr/local/nginx/sbin/nginx -s reload
ExecStop=/usr/local/nginx/sbin/nginx -s stop
ExecQuit=/usr/local/nginx/sbin/nginx -s quit
PrivateTmp=true
[Install]
WantedBy=multi-user.target
#在启动服务之前,需要先重载systemctl命令
[root@localhost ~]# systemctl daemon-reload
#启动服务或者使用systemctl start nginx
[root@localhost ~]# systemctl start nginx.service
#运行以下命令设置Nginx服务开机自启动
[root@localhost ~]# systemctl enable nginx
#查看nginx
[root@localhost ~]# ps -ef | grep nginx
root 14869 1 0 17:37 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody 14871 14869 0 17:37 ? 00:00:00 nginx: worker process
root 14893 1549 0 17:37 pts/0 00:00:00 grep --color=auto nginx
systemctl status nginx #状态
systemctl start nginx #启动
systemctl stop nginx #停止
systemctl restart nginx #重启
[root@localhost ~]# reboot
Connection to 192.168.0.197 closed by remote host.
Connection to 192.168.0.197 closed.
C:\Users\beauty>ssh root@192.168.0.197
root@192.168.0.197's password:
Last login: Sat Jun 5 16:09:35 2021 from 192.168.0.194
[root@localhost ~]# ps -ef | grep nginx
root 1081 1 0 17:39 ? 00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody 1084 1081 0 17:39 ? 00:00:00 nginx: worker process
root 1567 1548 0 17:40 pts/0 00:00:00 grep --color=auto nginx