centos 7 nginx 의 원본 을 설정 하여 설치 합 니 다.
2598 단어 링크 ux 입문 과 실천
자, 게 으 른 사람 은 자신 을 통 해 nginx 를 컴 파일 하고 싶 지 않 습 니 다 – 마지막 까지 컴 파일 해 야 하지만 – 일부 플러그 인 은 컴 파일 해 야 하기 때 문 입 니 다.다음은 한 형제의 문장 을 베껴 쓴다.
centos 7 yum 을 통 해 nginx 설치
아래 와 같이 베껴 쓰다.
yum install -y nginx
yum 을 통 해 설치 할 때 아래 의 오 류 를 알려 줍 니 다.
[root@localhost yum.repos.d]# yum install nginx
:fastestmirror, langpacks
Loading mirror speeds from cached hostfile
nginx。
:
nginx 원본 추가 필요
[root@localhost yum.repos.d]# rpm -ivh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
이 명령 을 실행 하면 / etc / yum. respos. d 아래 에 nginx. repo 가 하나 더 나 옵 니 다.
[root@localhost yum.repos.d]# ll
40
-rw-r--r--. 1 root root 1572 12 1 2016 CentOS-Base.repo
-rw-r--r--. 1 root root 1572 12 1 2016 CentOS-Base.repo.backup
-rw-r--r--. 1 root root 1664 10 24 10:36 CentOS-Base.repo.bak
-rw-r--r--. 1 root root 1309 8 30 2017 CentOS-CR.repo
-rw-r--r--. 1 root root 649 8 30 2017 CentOS-Debuginfo.repo
-rw-r--r--. 1 root root 314 8 30 2017 CentOS-fasttrack.repo
-rw-r--r--. 1 root root 630 8 30 2017 CentOS-Media.repo
-rw-r--r--. 1 root root 1331 8 30 2017 CentOS-Sources.repo
-rw-r--r--. 1 root root 3830 8 30 2017 CentOS-Vault.repo
-rw-r--r--. 1 root root 113 7 15 2014 nginx.repo
그리고 설치 명령 을 실행 합 니 다.
yum install -y nginx
설치 후 nginx 의 기본 설치 디 렉 터 리 를 볼 수 있 습 니 다.
[root@localhost yum.repos.d]# whereis nginx
nginx: /usr/sbin/nginx /usr/lib64/nginx /etc/nginx /usr/share/nginx /usr/share/man/man8/nginx.8.gz
[root@localhost yum.repos.d]# pwd
/etc/yum.repos.d
다음은 Nginx 의 기본 경로 입 니 다.
(1) Nginx 설정 경로: / etc / nginx /
(2) PID 디 렉 터 리: / var / run / nginx. pid
(3) 오류 로그: / var / log / nginx / error. log
(4) 접근 로그: / var / log / nginx / access. log
(5) 기본 사이트 디 렉 터 리: / usr / share / nginx / html
사실 Nginx 설정 경 로 를 알 면 다른 경 로 는 / etc / nginx / nginx. conf 및 / etc / nginx / conf. d / default. conf 에서 조회 할 수 있 습 니 다.
nginx 관련 인증 명령 및 시작 명령
[root@localhost yum.repos.d]# nginx
[root@localhost yum.repos.d]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
[root@localhost yum.repos.d]# nginx -s reload
nginx 시작
nginx - t 테스트 명령
nginx - s relaod nginx. conf 를 수정 한 후 다시 불 러 올 수 있 습 니 다.
참고:http://www.itmuch.com/install/nginx-yum-install-in-centos7/