반응형
[2021.07.30] How to install Nginx on Centos7?
해당 게시글은 centos7에서 Nginx를 설치하는 방법에 대해 알아보도록 하자
+ centos 버전 확인 방법
sudo yum install redhat-lsb-core
lsb_release -a
LSB Version: :core-4.1-amd64:core-4.1-noarch
Distributor ID: CentOS
Description: CentOS Linux release 7.9.2009 (Core)
Release: 7.9.2009
Codename: Core
-> lsb_release -a를 통해 centos version을 확인할 수 있음.
-> Description에 보면 CentOS 7.9버전이라고 게시되어 있음
-----------------------------------------------------------------------------------------------------------------------------------
Centos7.9 Nginx 설치 방법
cd etc/yum.repos.d/
-> 위의 경로로 이동
sudo vi nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1
-> nginx.repo에 위의 코드를 복붙하여 저장
* centos 8일 경우 아래와 같이 setting 해주면 됨
baseurl=http://nginx.org/packages/centos/8/$basearch/
sudo yum install -y nginx
nginx -v
-> nginx install & version check
Centos7.9 에서 방화벽(firewall) 설치 방법 및 설정 방법
sudo yum install firewalld
방화벽(firewall) 데몬 등록 및 실행
sudo systemctl unmask firewalld
sudo systemctl enable firewalld
sudo systemctl start firewalld
방화벽(firewall) 설정
sudo firewall-cmd --permanent --zone=public --add-port=8080/tcp
sudo firewall-cmd --permanent --zon=public --add-service=http
sudo firewall-cmd --permanent --zon=public --add-service=https
방화벽(firewall) 새로고침
sudo firewall-cmd --reload
반응형
'Web > Server & MySQL' 카테고리의 다른 글
[2021.08.02] How to set up multiple virtual hosts on Ubuntu20.04? (0) | 2021.08.02 |
---|---|
[2021.07.30] 인턴 +151 How to extract data stored in mysql?(Not Using WorkBench) (0) | 2021.07.30 |
[2021.07.29] How to set up virtual host on Nginx? (0) | 2021.07.29 |
[2021.07.29] How to install Nginx on ubuntu 20.04? (0) | 2021.07.29 |
[2021.07.23] MySQL에 1분 내로 대용량 데이터 CSV File 업로드 방법? (0) | 2021.07.23 |
댓글