centos 7 환경에서 nginx 삭제 후 재설치하는 방법에 대해서 알아보려고 합니다.
1. nginx 삭제
# 설치 여부 확인
yum list installed nginx
# 삭제
yum remove {your_pakage_name}
2. nginx 설치
# 기본적으로 nginx를 제공하지 않기 떄문에 저장소 설정필요
vi /etc/yum.repos.d/nginx.repo
[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/7/$basearch/
gpgcheck=0
enabled=1
# nginx 설치
yum install nginx -y
3. port 변경
# 방화벽 포트 열기
firewall-cmd --permanent --zone=public --add-port=9090/tcp
# 재부팅
firewall-cmd --reload
# 포트 확인
firewall-cmd --list-ports
# nginx 포트 설정
vi /etc/nginx/conf.d/default.conf
listen 9090;
# systemctl enable nginx
# systemctl start nginx
4. 동작 확인
'Server > Linux' 카테고리의 다른 글
mremoteNG Unable to load key file (PuTTY key format too new) 해결방법 (0) | 2023.02.13 |
---|---|
[CentOS] nginx multi port(멀티 포트) 세팅하기 (0) | 2023.02.10 |
[linux] centos nginx Reverse-Proxy 서버 만들기 (0) | 2023.02.10 |
linux CentOS 외부 접속(방화벽 오픈) 허용 (0) | 2023.02.10 |
CentOS7 Redis 설치 후 외부 접근 허용 (0) | 2023.02.02 |