일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- OSI7계층
- Router
- database
- 리눅스
- 코딩 테스트
- MySQL
- TDD
- Container
- docker
- Routing
- 코딩테스트
- snort
- osi7layer
- 라우팅프로토콜
- 컨테이너
- programmers
- 스노트
- coding test
- 프로그래머스
- 스노트 룰
- Python
- 데이터베이스
- Snort Rule
- Linux
- db
- Cosmos
- 라우터
- 도커
- 라우팅
- 트레바리
- Today
- Total
목록tomcat (2)
Simple is IT, 누구나 보고 누구나 깨닫는 IT
아래의 설정들은 전부 이전 포스트를 기준으로 합니다.1. 아파치 설정 1) 워커 파일 설정 변경 vi /etc/httpd/conf/httpd.conf 2) 워커 파일 변경 vi /etc/httpd/conf/workers.properties 아래 내용 추가 지정 된 worker file 내용 worker.list=tomcat1,tomcat2,loadbalance // 대상 worker 명 worker.tomcat1.type=ajp13 worker.tomcat1.host=[tomcat1 IP] worker.tomcat1.port=8009 worker.tomcat1.lbfactor=1 worker.tomcat2.type=ajp13 worker.tomcat2.host=[tomcat2 IP] wo..
3 Tier Web Architecture(Web Server(정적), Web Application(동적), DB) 3 or 4 tier architecture 1. 웹서버 (저번 포스트에서 SSL로 구성했던 Web Server를 사용한다.)2. 웹 어플리케이션 서버 1) JDK 설치 yum update yum install java-1.8.0-openjdk-devel.x86_64 환경변수 설정 vi /etc/profile 최하단 이동 JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.242.b08-0.el7_7.x86_64/ export JAVA_HOME PATH=$PATH:$JAVA_HOME/bin export PATH source /etc/profile ..