WebtoB 웹투비 구조
2023. 2. 16. 15:14ㆍjava/WEB WAS
728x90
반응형
출처: WebtoB 웹투비 구조 (sarc.io)
1. wsm
- webtob 부팅 시 제일 먼저 로드된다.
- hth, htl 등을 관리한다.
Booting WebtoB on node (paper-PC)
Starting WSM at 04/30/13 11:06:56
Starting HTL at 04/30/13 11:06:56
Starting HTH at 04/30/13 11:06:56
Current WebtoB Configuration:
Number of client handlers (HTH) = 1
Supported maximum user per node = 2018
Supported maximum user per handler = 2018
Starting SVR(C:/TmaxSoft/JEUS7.0/webserver/bin/htmls.exe) at 04/30/13 11:06:56
Starting SVR(C:/TmaxSoft/JEUS7.0/webserver/bin/cgis.exe) at 04/30/13 11:06:56
Starting SVR(C:/TmaxSoft/JEUS7.0/webserver/bin/ssis.exe) at 04/30/13 11:06:56
2. htl (http listener)
클라이언트 최초 접속 시에는 htl과 연결된다.
3. hth (http handler)
- 클라이언트와 서버 프로세스 사이
- 보통 하나의 hth 프로세스가 1000~2000 동시사용자 처리
- NODE절의 HTH 항목 설정으로 수 조절
- CPU 수만큼 HTH 설정하는 것이 효율적
*DOMAIN
webtob1
*NODE
webmain
WebtoBDir = "$WEBTOBDIR",
SHMKEY = 69000,
Docroot = "docs/",
AppDir = "ap/",
Port = "5469",
HTH = 2,
IndexName = "index.html",
Logging = "accesslog",
ErrorLog = "errorlog"
4. 서버 프로세스
- htmls
- phps
- cgis
- ssis
*SERVER
html SvgName = htmlg, MinProc = 6, MaxProc = 10
jsv1 SvgName = jsvg, MinProc = 2, MaxProc = 10
cgi SvgName = cgig, MinProc = 1, MaxProc = 10
ssi SvgName = ssig, MinProc = 1, MaxProc = 2
728x90
반응형
'java > WEB WAS' 카테고리의 다른 글
JEUS와 Tomcat의 jasper 엔진 차이 (0) | 2023.02.16 |
---|---|
HTTPS를 사용해야 하는 이유 (0) | 2023.02.16 |
Webtob+JEUS - Reverse Connection Pooling (0) | 2023.02.16 |
HTTP 일반 헤더(General Header) 설정 - Cache-Control, Connection, Date, Pragma, User-Agent (0) | 2022.10.28 |
크롬 브라우저 캐시 지우는 설정해도 캐시가 지워지지 않을 때 How to prevent browser from loading js from memory cache in chrome browser (0) | 2022.10.28 |