폐쇄망이면서 인터넷은 안되고 Local yum repo만 구성되어있는 환경을 구성하고 Apache를 설치했습니다.
(하지만 폐쇄망 인터넷x에서 설치 후 복제 한 후 외부망으로 바꿈)
Local yum repo 설치 방법은 아래를 참고 해주세요.
https://seul96.tistory.com/343
| WEB(Apache) 설치 요약
자세한 설치방법은 아래 참고 해주세요 :)
# httpd 설치 확인
httpd -v
# apache 설치
yum -y install httpd
httpd -v
# apache 시작 및 자동시작
systemctl start httpd
chkconfig httpd on
# 테스트 페이지 생성
cd /var/www/html/
touch index.html
vi index.html
"Hello World"
http://192.168.56.101/index.html
# httpd 상황 확인
systemctl status httpd
# httpd.conf 확인 (LISTEN PORT등)
find / -name *httpd.conf*
vi /usr/lib/tmpfiles.d/httpd.conf
1. WEB(Apache) 설치
1.1. Apache 설치 확인
# 설치 안되어있을 때
[root@localhost script]# httpd -v
bash: httpd: 명령을 찾을 수 없습니다...
1.2. Apache 설치
1.2.1. Apache 설치
[root@localhost script]# yum -y install httpd
1.2.1. Apache 설치 확인
[root@localhost script]# httpd -v
Server version: Apache/2.4.6 (CentOS)
Server built: Apr 2 2020 13:13:23
1.3. Apache 시작 및 실행시 시작 적용
[root@localhost script]# systemctl start httpd
[root@localhost script]# chkconfig httpd on
1.4. 테스트 페이지 생성 및 동작 확인
1.4.1. 테스트 페이지 생성
[root@localhost script]# cd /var/www/html/
[root@localhost html]# touch index.html
[root@localhost html]# vi index.html
"Hello World"
1.4.1. apache 동작 확인
root@localhost html]# systemctl status httpd
1.4.1. httpd.conf 파일 찾기 및 80 port 개방
[root@localhost html]# find / -name *httpd.conf*
/etc/httpd/conf/httpd.conf
/usr/lib/tmpfiles.d/httpd.conf
1.4.2. 동작 확인
http://192.168.56.101/index.html
☞ 더 많은 인프라 구축 방법(폐쇄망)을 보고 싶으면 아래 링크를 클릭해주세요.
2021.12.13 - [Linux] - CentOS 7.8 설치 및 putty 접속 (원하는 버전 설치 링크 포함)
2021.12.14 - [Linux] - [CentOS 7.8] local yum repository 구성 (폐쇄망x, 인터넷x)
2021.12.17 - [DATABASE/DB install & upgrade] - CentOS7 Mysql5.7 install (폐쇄망, internet X)
2021.12.22 - [WEB|WAS] - [CentOS7] Apache 설치 (폐쇄망, 인터넷X, Local yum repo)
2021.12.23 - [WEB|WAS] - Apache - Tomcat 연동 (물리적 분리 - 외부망 : WEB, 내부망 : WAS)
2021.12.24 - [Security] - [CentOS7] SSL 설치 및 SSL 적용
2022.01.27 - [WEB|WAS] - Apache, Tomcat tuning
2022.03.16 - [DATABASE] - Mysql, MariaDB PASSWORD Lifetime 설정(만료기간)
'WEB|WAS' 카테고리의 다른 글
Apache, Tomcat tuning (0) | 2022.01.27 |
---|---|
Apache - Tomcat 연동 (물리적 분리 - 외부망 : WEB, 내부망 : WAS) (10) | 2021.12.23 |
[JEUS] linux jeus7 use + jsp 화면 띄우기 (2) | 2020.05.07 |
[JEUS] linux jeus7 install (0) | 2020.04.29 |
JBOSS6 install & deploy + JBOSS7 install (0) | 2019.10.25 |
댓글