Server/Linux

[centos7] nginx 설치

밍글링글링 2022. 3. 28.
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

댓글