본문 바로가기
About IT/Linux

CentOS 7에 nginx설치

by ShaunP 2019. 10. 14.

1. Nginx 저장소를 추가합니다.

sudo vi /etc/yum.repos.d/nginx.repo

 

[nginx.repo]

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck=0
enabled=1

 

2. Yum 을 통해 설치 저장소를 추가하였다면 설치를 진행합니다.

sudo yum install -y nginx

3. 서비스 활성화

$ sudo systemctl enable nginx

4. 서비스 시작, 종료, 상태확인

$ sudo systemctl start nginx
$ sudo systemctl stop nginx
$ sudo systemctl status nginx

5. 포트 개방

$ sudo firewall-cmd --permanent --zone=public --add-service=http
$ sudo firewall-cmd --permanent --zone=public --add-service=https
$ sudo firewall-cmd --reload

6.  완료

'About IT > Linux' 카테고리의 다른 글

Ubuntu 16.04 hostname 변경  (0) 2020.01.22
iptables 정리  (0) 2020.01.20
Cent OS7 Docker-compose설치  (0) 2019.10.14
CentOS 7에 Docker설치  (0) 2019.10.14