CentOS下安装Nginx实例分析
时间:2023-05-12 06:48
安装环境:linux 服务器 centos 7.3、root 权限 1、install the prerequisites: 2、to set up the yum repository, create the file named /etc/yum.repos.d/nginx.repo with the following contents: (注意替换 os 版本:$releasever,如 centos 版本是 7,就替换成 7) 命令: 使用 vim 编辑 nginx.repo 文件 设置 nginx 的 yum 源: 将以下内容粘贴进 nginx.repo 文件中 输入vim命令 :wq 保存并退出 3、to install nginx, run the following command: sudo yum install nginx 4、when prompted to accept the gpg key, verify that the fingerprint matches 573b fd6b 3d8f bc64 1079 a6ab abf5 bd82 7bd9 bf62, and if so, accept it. 最后会输出 fingerprint,如果和上面红色部分匹配,再输入 y 确认 5、启动 | 停止 | 重启 nginx: 6、查看 nginx 所有安装位置: rpm 是 linux 的 rpm 包管理工具,-q 代表询问模式,-l 代表返回列表 7、nginx 配置文件: 以上就是CentOS下安装Nginx实例分析的详细内容,更多请关注Gxl网其它相关文章!sudo yum install yum-utils
vim /etc/yum.repos.d/nginx.repo
[nginx-stable]name=nginx stable repobaseurl=http://nginx.org/packages/centos/$releasever/$basearch/gpgcheck=1enabled=1gpgkey=https://nginx.org/keys/nginx_signing.keymodule_hotfixes=true
中途会输入 y 确认安装# 启动systemctl start nginx.service# 停止systemctl stop nginx.service# 重启systemctl restart nginx.service
rpm -ql nginx
/etc/nginx/conf.d/etc/nginx/conf.d/default.conf