본문 바로가기
Middleware/WebtoB

WebtoB 기본 운영 가이드 (설정파일 컴파일, 기동 및 종료)

by nxCore 2023. 3. 3.

 

 

WebtoB 설정 파일을 수정 후 컴파일 및 기동, 종료 하는 방법에 대한 설명입니다.

 

WebtoB 는 기본적으로 $WEBTOBDIR/config/http.m 파일을 설정파일로 사용합니다.

운영 방법에 따라 기본 설정파일명을 사용하지 않고 원하는 파일명으로도 사용할 수 있습니다.

여기서는 기본 파일명인 http.m 을 기준으로 설명합니다.

 

  • http.m 컴파일 명령
[webtob5@CentOS7-WAS1 ~]$ wscfl -i http.m
[CFL-00368] Configuration uses privileged listen ports (those below 1024). These ports generally require root privilege. The user may run WebtoB as a superuser, or change the owner of htl to root and enable the setuid (sticky) bit on htl.

Current configuration:
        Number of client handler(HTH) = 1
        Supported maximum user per node = 16384
        Supported maximum user per handler = 16384

Successfully created the configuration file (/sw/webtob5/config/wsconfig) for node CentOS7-WAS1.
The host name of the running machine is CentOS7-WAS1.

컴파일 명령을 수행하면 컴파일이 진행되며, 설정파일에 구문 오류 등 문제가 있는 경우 오류를 출력하고, 문제가 없는 경우 정상 컴파일 된 다음 $WEBTOBDIR/config/wsconfig 파일이 생성됩니다.

 

  • WebtoB 기동
[webtob5@CentOS7-WAS1 ~]$ wsboot

Booting WebtoB on node (CentOS7-WAS1)
Starting WSM at Fri Mar  3 13:01:31 2023
Starting HTL at Fri Mar  3 13:01:31 2023
Starting HTH at Fri Mar  3 13:01:31 2023
         Current WebtoB Configuration:
                Number of client handlers (HTH) = 1
                Supported maximum user per node = 16384
                Supported maximum user per handler = 16384

기동 중 문제가 발생했다면 WebtoB 가 즉시 종료 되거나, 오류 메시지를 지속적으로 출력합니다.

암호화 된 SSL/TLS 개인키를 설정한 경우, 기동 시 인증서 패스워드를 물어볼 수 있습니다.

 

  • WebtoB 종료
[webtob5@CentOS7-WAS1 ~]$ wsdown
Do you really want to shut down WebtoB? (y : n): y
WSDOWN for node(CentOS7-WAS1) is starting:
        WSDOWN: HTL downed: Fri Mar  3 13:01:28 2023
        WSDOWN: HTH downed: Fri Mar  3 13:01:28 2023
        WSDOWN: WSM downed: Fri Mar  3 13:01:28 2023
        WSDOWN: WebtoB is down

 

종료 확인을 체크하지 않고 (y/n 입력) 명령 입력 즉시 종료하려면 다음과 같이 명령을 수행합니다.

[webtob5@CentOS7-WAS1 ~]$ wsdown -i

WSDOWN for node(CentOS7-WAS1) is starting:
        WSDOWN: HTL downed: Fri Mar  3 13:05:53 2023
        WSDOWN: HTH downed: Fri Mar  3 13:05:53 2023
        WSDOWN: WSM downed: Fri Mar  3 13:05:53 2023
        WSDOWN: WebtoB is down

현재 동작중인 요청/응답 건을 고려하지 않고 즉시 WebtoB 프로세스가 종료되므로 필요한 경우에만 사용해야 합니다.

댓글