728x90
외부 저장소를 추가한다.
# vi /etc/yum.repos.d/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
[nginx-mainline]
name=nginx mainline repo
baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
이 후, 아래와 같이 명령어를 입력한다.
# yum install nginx -y
--nginx 실행
# nginx -
--ngnix 정지
# nginx -s stop
# systemctl start nginx
--자동으로 nginx 실행
# systemctl enable nginx
728x90
'Server > Linux' 카테고리의 다른 글
[linux] firewalld 방화벽 포트 열기 (0) | 2022.03.29 |
---|---|
[centos7] centos7 nginx 버전 오류 (0) | 2022.03.29 |
[centos] Node 설치 (0) | 2022.03.28 |
[VI] vim 에디터 환경 설정하기 (0) | 2018.08.09 |
VI 에디터 행번호 보이게 하기(set nu) (0) | 2018.08.08 |
댓글