yum을 이용하여 nginx를 간편하게 설치해 보자.
설치는 매우 간단하다.
아래 명령어를 입력해주면 간단하게 설치가 끝난다.
[itsme@localhost ~]$ sudo yum -y install nginx
명령어를 실행하면 아래와 같은 메시지가 출력되고 자동으로 dependency를 체크해서 설치를 진행한다.
source cod를 이용해 설치할 때보다 매우 간단하게 끝난다.
물론 인터넷 외부망이 오픈되어 있어야 한다.
[itsme@localhost ~]$ sudo yum -y install nginx [sudo] password for itsme: Last metadata expiration check: 0:42:30 ago on Thu 10 Oct 2019 09:25:50 PM KST. Dependencies resolved. ===================================================================================================================== Package Arch Version Repository Size ===================================================================================================================== Installing: nginx x86_64 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 569 k Installing dependencies: nginx-all-modules noarch 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 23 k nginx-filesystem noarch 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 24 k nginx-mod-http-image-filter x86_64 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 34 k nginx-mod-http-perl x86_64 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 45 k nginx-mod-http-xslt-filter x86_64 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 33 k nginx-mod-mail x86_64 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 64 k nginx-mod-stream x86_64 1:1.14.1-8.module_el8.0.0+5+258f653c AppStream 85 k Enabling module streams: nginx 1.14 Transaction Summary |
설치가 완료되었다면 서비스를 실행해 보자.
[itsme@localhost ~]$ sudo service nginx start
Redirecting to /bin/systemctl start nginx.service
[itsme@localhost ~]$ ps -ef | grep nginx
root 80478 1 0 22:11 ? 00:00:00 nginx: master process /usr/sbin/nginx
nginx 80479 80478 0 22:11 ? 00:00:00 nginx: worker process
itsme 80482 1960 0 22:12 pts/0 00:00:00 grep --color=auto nginx
종료도 한번 해 보자.
[itsme@localhost ~]$ sudo service nginx stop
Redirecting to /bin/systemctl stop nginx.service
[itsme@localhost ~]$ ps -ef | grep nginx
itsme 80501 1960 0 22:12 pts/0 00:00:00 grep --color=auto nginx
yum을 이용하면 매우 간단하게 설치가 완료된다. 정말 매우 매우 쉽다.
nginx 설정 파일의 위치는 /etc/nginx 에서 찾아볼 수 있다. (nginx.conf)
다음 포스팅에서는 nginx와 스프링 부트 프로젝트를 연동해 보려 한다.
그럼 이만.
반응형
'infra > etc' 카테고리의 다른 글
[CentOS] tomcat 설치 하기 (0) | 2019.10.29 |
---|---|
[Nginx] (13: Permission denied) while connecting to upstream 해결 (0) | 2019.10.13 |
[CentOS] sudo가 안될때 - sudoers 추가 하기 (0) | 2019.10.10 |
[CentOS] sudo 명령어 (0) | 2019.10.10 |
[Nginx] CentOS에 Nginx 설치 하기 (source code) (0) | 2019.05.01 |
댓글