반응형
근무하는 회사에서 서비스 운영을 맡게되었다.
그로 인해 대충 알고있던 인프라에 대해 공부를 해야겠다고 생각했고 그 시작으로 nginx 설치를 하려고 한다.
1. sudo yum install yum-utils
2. /etc/yum.repos.d/nginx.repo 파일 생성 후 내용 작성
이때 주의해야 할것은 sudo 명령어를 이용하여 열지 않으면 작성이 되지 않는다.
[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=0
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=true
3. sudo yum-config-manager --enable nginx-mainline
4. nginx 설치
sudo yum install nginx
5. nginx 시작
sudo systemctl start nginx
6. 확인
ip주소 를 치고 들어가면 아래와 같은 화면이 나온다.
출처 : nginx.org/en/linux_packages.html
반응형
'컴퓨터공학 기초 > 인프라' 카테고리의 다른 글
[nginx] error code 별로 error page 보여주기 (0) | 2021.02.28 |
---|---|
[nginx] worker_processes 란 ? (0) | 2021.02.27 |
[Tomcat] war파일 없이 배포하기 (0) | 2021.01.02 |
[Tomcat] org.apache.catalina.util.LifecycleBase.handleSubClassException Failed to initialize component [Connector[HTTP/1.1-8080] (0) | 2021.01.01 |
[ELK] Unable to connect to Elasticsearch. Error: Request Timeout after 30000ms (0) | 2020.11.08 |
댓글