install:
注意脚本里$的转义
sudo yum install yum-utils
touch /etc/yum.repos.d/nginx.repo
cat >>/etc/yum.repos.d/nginx.repo<<EOF
[nginx-stable]
name=nginx stable repo
baseurl=http://nginx.org/packages/centos/\$releasever/\$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/\$releasever/\$basearch/
gpgcheck=1
enabled=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
EOFsudo yum install nginx
sudo systemctl start nginx
use:
the configuration file is named nginx.conf and placed in the directory /usr/local/nginx/conf, /etc/nginx, or /usr/local/etc/nginx.
配置文件:
/etc/nginx/nginx.conf
可执行文件在:
/usr/sbin/nginx
启动:
systemctl start nginx
80端口
pid文件
/run/nginx.pid
nginx -s signal
Where signal may be one of the following:
stop— fast shutdownquit— graceful shutdownreload— reloading the configuration filereopen— reopening the log files
nginx -s quit
nginx -s reload
本文指导如何通过脚本安装yum包、配置Nginx稳定和主线仓库,演示了启动、信号控制和配置文件路径。重点讲解了如何使用`systemctl`进行管理和控制nginx的不同信号操作。
4万+

被折叠的 条评论
为什么被折叠?



