설치 환경: Linux 서버 centos 7.3, 루트 권한
1. 전제 조건 설치:
sudo yum install yum-utils
sudo yum install yum-utils
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 文件
vim /etc/yum.repos.d/nginx.repo
设置 nginx 的 yum 源:
将以下内容粘贴进 nginx.repo 文件中
[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
输入vim命令 :wq 保存并退出
3、to install nginx, run the following command:
sudo yum install nginx
中途会输入 y 确认安装
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:
# 启动 systemctl start nginx.service # 停止 systemctl stop nginx.service # 重启 systemctl restart nginx.service
6、查看 nginx 所有安装位置:
rpm 是 linux 的 rpm 包管理工具,-q 代表询问模式,-l 代表返回列表
rpm -ql nginx
2 yum 저장소를 설정하려면 /라는 파일을 만듭니다. etc/yum.repos.d/nginx.repo 다음 내용으로:
(os 버전 교체 참고 사항: $releasever, centos 버전이 7인 경우 7로 교체)
🎜명령: 🎜🎜vim을 사용하여 nginx.repo 파일 편집🎜🎜vim /etc/yum.repos.d/nginx.repo
🎜🎜nginx의 yum 소스 설정: 🎜🎜다음 내용을 nginx.repo 파일에 붙여넣으세요🎜/etc/nginx/conf.d /etc/nginx/conf.d/default.conf
rpm - ql nginx
🎜🎜🎜7.nginx 구성 파일: 🎜rrreee위 내용은 CentOS에서의 Nginx 설치 사례 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!