기술교육 Architecture & Monitoring

Size: px
Start display at page:

Download "기술교육 Architecture & Monitoring"

Transcription

1 Architecture & Monitoring

2 목차 Architecture 개요 JEUS7 Spec 도메인아키텍처 구성요소 Domain Administration Server(DAS) Managed Server(MS) Cluster NodeManager JEUS6 VS JEUS 논리적구성단위 세션서버 Graceful Redeploy Launcher Multicast 와 Virtual Multicast Monitoring 서버모니터링 Thread 모니터링 Connection Pool 모니터링 Web 모니터링 JMS 모니터링 Application 모니터링

3 Architecture 본장에서는 JEUS7 의아키텍처와구성요소및기존 JEUS6 와의차이점에대해설명합니다. 1. 개요 1.1 JEUS7 Spec JEUS7 은 Java EE6 Spec 을구현한제품으로주요 Spec 사항은다음과같습니다. 분류 Spec 분류 Spec EJB(Enterprise JavaBeans) 3.1 Servlet 3.0 JMS(Java Message Service) 1.1 Web Application JSP(Java Server Pages) 2.1 Enterprise Application Bean Validation 1.0 JSF(Java Server Faces) 2.0 CDI(Contexts and Dependency JAX-RS(Java API for RESTful Web Injection for Java) 1.0 Services) 1.1 JCA(Java EE Connector Architecture) 1.6 Web Services JAX-WS(Java API for XML-Based Web Services) 2.2 Java EE-related Specs JDBC(Java Database Connectivity) 4.0 JAXB(Java Architecture for XML Binding) Servlet 3.0 특징 Asynchronous 지원 Servlet 2.5 에서는하나의 thread 가클라이언트의요청과응답을처리하는방식으로장시간수행되는클라이언트의요청이많아질경우 thread 부족으로인해신규클라이언트들의요청처리가불가능하게됨 Servlet 3.0 에서클라이언트의요청을받아들이는 thread 와실제클라이언트에게응답하는 thread 를분리함으로써 ( 비동기처리 ) 앞서언급한문제해소 비동기처리를위해애플리케이션은 web.xml 이나코드내 Annotation 을사용해서 asyncsupported =true 속성을정의해야함 Annotation 확장 기존 web.xml 에정의한 Servlet 관련설정을 Annotation 으로제공 EX : Servlet 정의 (@WebServlet), Servlet 필터정의 (@WebFilter), 리스너정의 (@WebListener) 등 MultipartConfig 를사용한파일업로드기능표준화 1.2 도메인아키텍처 JEUS7 부터도메인아키텍처가새롭게도입되었습니다. 도메인은서비스에따라여러개의서버와클러스터로 구성된기본관리단위로 Domain Administration Server(DAS), Managed Server(MS), Cluster 로구성됩니다. 3

4 각도메인마다하나의설정파일 (domain.xml) 을가지며, 도메인간의설정 ( 보안, 세션, 애플리케이션등 ) 공유는불가능합니다. 일반적으로하나의머신에하나의 JEUS(JEUS_HOME) 를설치하는데, 도메인은 JEUS_HOME 에한개이상올수있고, 원격머신의 JEUS(JEUS_HOME) 에걸쳐서설정이가능하다. 즉, 서비스의중요도와부하상황을고려해서도메인을구성해야합니다. 2. 구성요소 본절에서는도메인을구성하는요소인 Domain Administration Server(DAS), Managed Server(MS), Cluster 에관해다룹니 다. 4

5 2.1 Domain Administration Server(DAS) 각도메인에반드시하나만존재하는서버로주요기능은다음과같습니다. 도메인전체설정관리 도메인내의모든 MS 가다른머신에존재하더라도동일한설정으로구동 : DAS 가기동된상태에서 MS 기동 (DEPENDENT 상태 ) 시, DAS 가현재버전의설정파일을 MS 에전송 : DAS 가기동되지않은상태에서 MS 기동 (INDEPENDENT 상태 ) 시, 로컬캐시에존재하는설정파일로기동되고 DAS 가기동될때설정이동기화됨 : 동적설정 ( 운영중서버재기동없이실시간반영 ) 변경시각 MS 에전달 도메인내모든애플리케이션관리 애플리케이션상태관리 : MS 의애플리케이션상태와 DAS 에서관리하고있는애플리케이션의상태가동일하도록유지시킴 애플리케이션파일관리 : DAS 에서는 MS 가기동될때와 MS 에서애플리케이션이 deploy 되는시점에파일을동기화 : MS 가기동될때 DAS 의부재로애플리케이션파일을동기화하지못했다면 DAS 가기동될때 MS 에서 deploy 에실패한애플리케이션에대해다시동기화 서버나클러스터에애플리케이션 deploy 애플리케이션과관련된모든명령은 DAS 를통해서만동작가능 WebAdmin 과 jeusadmin 을통해도메인내의모든서버, 애플리케이션, 리소스모니터링및제어 각 MS 로 jeusadmin 접속이가능하지만설정변경은 DAS 를통해서해야함 2.2 Managed Server(MS) 도메인에여러개존재할수있고, 실제애플리케이션을서비스하는서버로주요기능은다음과같습니다. EJB, Servlet, JMS 엔진서비스 : 사용자가 deploy 한컴포넌트관리및서비스 JNDI 서비스 : 애플리케이션에서 JEUS 에등록된객체들을정해진이름으로찾아서사용할수있는방법제공 세션클러스터링서비스 : Servlet 엔진들사이에 HTTP 세션이유지될수있도록하는서비스로분산식세션클러스터링지원 Management 서비스 : Java Management Extensions(JMX) 를통해서비스, 컴포넌트, 애플리케이션관리및모니터링서비스 Scheduler 서비스 : 사용자가지정한시간에특정작업들을실행 Logging 서비스 : 서버에서발생하는이벤트와에러를파일로기록 DB 연결서비스 : 애플리케이션이 JDBC Connection Pool 을통해서 DB 에접근할수있도록지원 트랜잭션서비스 : JEUS 트랜잭션매니저를통해애플리케이션이트랜잭션을사용할수있도록지원 2.3 Cluster 클러스터는부하분산 (Load Balancing) 과장애극복 (Failover) 을위해동일한서비스를수행하는여러개의서버들의집합이다. 클러스터내의서버들은멀티캐스트를사용하여서로의상태를공유하고, 부하에따라클러스터에동적으로서버추가및삭제가가능합니다. 클러스터구성시, 클러스터에속한모든서버들에는동일애플리케이션및동일서비스와리소스등록을권장합니다. 5

6 3. NodeManager 노드매니저는 JEUS_HOME 마다하나씩존재하여해당머신에있는서버프로세스를관리한다. 부가적인기능이기 때문에사용하지않더라도서비스에영향이없으나안정적인운영을위해사용을권장합니다. 주요기능은다음과 같습니다. DAS 와다른원격머신에있는서버시작, 종료 DAS 를통해서 WebAdmin 이나 jeusadmin 의 startserver/stopserver 명령으로서버실행가능 노드매니저를사용하지않을경우기동하려는서버가속한원격머신에접속해서스크립트로실행 서버가비정상종료시재기동노드매니저의종류로 Java 타입과 SSH 타입으로구분됩니다. Java 타입노드매니저 Java 로구현된노드매니저로 OS 에상관없이실행 서버가비정상종료시, 노드매니저가주체적으로서버의상태를감지하여재기동 SSH 타입노드매니저 6

7 OS 의 SSH 를사용하는노드매니저로 Windows 에서사용할수없음서버가비정상종료시, DAS 에서 GroupManagementService(GMS) 를통해서버의상태를감지하고 SSH 타입노드매니저를통해서버재기동다른머신에 JEUS 설치가능 4. JEUS6 VS JEUS7 본절에서는 JEUS6 와 JEUS7 의구조적인차이점과주요변경사항에대해설명합니다. 아래는 JEUS6 와 JEUS7 의대략적인아키텍처비교표입니다. JEUS6 JEUS7 논리적구성의최상위단위 Node Domain 최상위단위의구성요소 Manager Container Domain Administration Server Managed Server, Cluster Node 의개념논리적구성의최상위단위 JEUS 설치 (JEUS_HOME) 단위 Cluster 의개념 Node 간부하분산과 Failover 를위한 Node 들과의연결구조 MS 간부하분산과 Failover 를위한 MS 들간의연결구조 Servlet, EJB, JMS 엔진서비스주체 Container Managed Server 주요환경파일 JEUSMain.xml, 각엔진설정파일 (EJBMain.xml, WEBMain.xml, JMSMain.xml) domain.xml 노드매니저설정파일 (nodes.xml) 세션관리 Manager( 중앙식 ), Container( 분산식 ) Managed Server( 분산식 ) 공통서비스주체 Manager Managed Server 시스템모니터링및재기동 Manager Node Manager 설정관리 배포관리 각노드마다설정 Admin Tools + xml 파일직접수정각노드마다배포 Admin Tools + xml 파일직접수정 중앙집중도메인설정 DAS + Admin Tools 중앙집중도메인배포 DAS + Admin Tools Context Group 제공미제공 Launcher 미제공제공 4.1 논리적구성단위 JEUS6 에서 Node 는 Manager 와 Container 들을포괄하는논리적인최상위단위로 JEUS_HOME 에여러개의노드를구성할수있습니다. Manager 의경우 Container 들을 Child Process 로기동및 JNDI 서비스, 외부리소스서비스, 보안서비스등주요기능을담당합니다. 이에실제서비스를처리하는 Container 는 Manager 와동일 Node 에구성되어야하고 Manager 에의존적인특징이있습니다. 7

8 JEUS7 에서 Domain 은 DAS 와 MS 를포괄하는논리적인최상위단위로도메인내환경설정과애플리케이션관리 등은 DAS 가담당합니다. MS 는 DAS 가종료되더라도독립적으로서비스처리가가능하고 ( 단, 환경설정이나 애플리케이션추가및변경불가능 ), DAS 와다른머신에구성할수있습니다. 4.2 세션서버 세션서버는 Servlet 또는 EJB 엔진들사이에서클라이언트의 HTTP 세션이유지될수있도록합니다. 즉, 요청을처리하던 Servlet 엔진이다운되어도다른 Servlet 엔진에서이후의요청처리시기존세션이끊어지지않도록합니다. JEUS6 까지는 JEUS Manager 에서세션을관리하고백업하는중앙세션서버를주로사용하였으나세션데이터가많아질수록 Manager 의부하가가중되는문제가있습니다. JEUS 7 에서는 Servlet 이나 EJB 엔진내에독립적인분산세션서버가존재하여세션을관리하는분산세션서버가사용됩니다. 위그림에서동일한서비스를처리하는 4 개의 MS 를 Cluster 로구성할경우, 별도의설정없이서버들간에분산식세션서버가동작합니다. ( 단, 정식라이선스의경우 JEUS Enterprise Edition 에서가능 ) JEUS6 에서는설정상으로자신의세션데이터를백업할서버를지정해서고정된백업엔진이동작하는구조였으나 JEUS7 에서는백업서버를설정하지않아도 JEUS 의 GMS(Group Management Service) 를기반으로자동으로백업을지정합니다. 예를들어, MS1 의 Servlet 엔진에대한백업서버는같은머신에있는 MS2 가아닌 ( 머신장애가발생할경우를대비 ) 원격서버의 MS3 또는 MS4 로지정됩니다. 8

9 추가적으로, JEUS 에서제공하는기본적인클러스터링을포함하여서버의구성과관계없이세션클러스터링이 지원되기때문에클러스터간의세션공유및한서버내에서여러개의세션클러스터링을구성할수있습니다. 세션관련자세한사항은, JEUS7 매뉴얼 > JEUS 세션관리안내서를참고합니다. 4.3 Graceful Redeploy JEUS7 에서추가된기능으로현재서비스중인애플리케이션의중단없이새로 Redeploy 한애플리케이션으로무중단 서비스를제공하는메커니즘입니다. 해당기능을사용하기위한애플리케이션의조건은다음과같습니다. 애플리케이션을패키징할때 META-INF/MANIFEST.MF 파일에아래필드추가. Redeploy 대상이되는 애플리케이션에도추가필요 Jeus-Use-Graceful-Redeploy: true // MANIFEST.MF 파일맨아랫줄에는 new line(\n) 이있어야함 패키징된파일의 last modified time 이서로달라야함 EJB 의경우 Session Bean 에대해서만 Graceful Redeploy 지원위그림에서볼수있듯이, 새로운애플리케이션을 Redeploy 할때기존애플리케이션을바로 Undeploy 하는것이아니고일정시간동안두애플리케이션이동시에 JVM 에존재하게됩니다. 따라서 OutOfMemory 가발생하지않도록 JVM 의 PermGen 사이즈에대해미리산정해야합니다. 4.4 Launcher Launcher 는 JEUS7 에서추가된개념으로도메인설정파일을읽어서서버를기동시키는역할을하는프로세스입니다. 스크립트를사용해서서버를기동하는경우 Launcher 가실행되는데, 기본적으로 SERVER_HOME/logs/JeusLauncher.log 에서버부팅시발생한이벤트를 logging 합니다. [ 스크립트로 DAS 기동 ] 9

10 stech:/home/jeus/jeus7/bin>startdomainadminserver -u administrator -p jeusadmin // startdomainadminserver -u JEUS 계정 p JEUS 패스워드... [DAS 기동중프로세스확인 ] stech:/home/jeus/jeus7/bin>ps -ef grep java grep jeus // Launcher 프로세스는 DAS 기동이완료되면종료 // DAS 프로세스를 fork 시킴 5. Multicast 와 Virtual Multicast JEUS7 에서서버들간에위치와상태를공유하기위해 Multicast(UDP Multicast) 를사용합니다. JEUS 에서기본적으로사용하는 Multicast IP 는 , Port 는 3030 으로해당 Multicast 주소에대해라우팅설정이필요한경우가있습니다. 서버간에 Multicast 가가능한지확인하는방법은 JEUS_HOME/bin 디렉터리에있는 mcastsender 와 mcastreceiver 스크립트를사용하여테스트할수있습니다. [ XX.1 서버 ] stech:/home/jeus/jeus7/bin>mcastsender -addr port 3030 // mcastsender -addr port == / : 3030, bound to / XX.1 2 == / : 3030, bound to / XX.1 3 == / : 3030, bound to / > ====test // 임의의메시지입력 [ XX.2 서버 ] 10

11 infrasvr:/home/jeus/jeus7/bin>mcastreceiver -addr port 3030 // mcastreceiver -addr port 3030 Socket == / : 3030, bound to / XX.2 Socket == / : 3030, bound to / ====test [sender = XX.1 : 3030], [bind_addr=/ ] // Sender에서입력한메시지수신 ====test [sender = XX.1 : 3030], [bind_addr=/ xx.2] ====test [sender = XX.1 : 3030], [bind_addr=/ ] ====test [sender = XX.1 : 3030], [bind_addr=/ xx.2] Multicast 를사용할수없는환경이나도메인구성이서브넷을벗어나는경우 Virtual Multicast(TCP Multicast) 로설정해야합니다. Virtual Multicast 사용시, 서버의 IP 와 Port 를이용하여서버들간에정보를공유하게되므로반드시모든서버가 Listen IP 와 Port 를명시해야합니다. Virtual Multicast 설정방법은, JEUS7 메뉴얼 > JEUS Domain 안내서 > 5. JEUS 클러스터링을참고합니다. 11

12 Monitoring 본장에서는 Webadmin 및콘솔관리자에서주요항목에대한모니터링방법을설명합니다. JEUS 관리자에서정상적으로서버의제어와모니터링이가능하기위해 JEUS_HOME 마다 NodeManager 가기동되어있어야합니다. Webadmin DAS 가기동된상태에서 Webadmin ( IP:DAS PORT/webadmin) 접속 > Monitoring 메뉴를선택합니다. 콘솔툴 DAS 가기동된상태에서 jeusadmin 에접속후아래와같이 command 를실행하여모니터링이가능합니다. stech:/home/jeus>dsa // jeusadmin 접속 Attempting to connect to XX.XX:9736. The connection has been established to Domain Administration Server adminserver in the domain jeus_domain. JEUS7 Administration Tool To view help, use the 'help' command. [DAS]jeus_domain.adminServer>help // 명령어도움말확인 [DAS]jeus_domain.adminServer>help si // 특정명령어도움말확인. help [command-name] [DAS]jeus_domain.adminServer>setserver server1 // 특정 MS만선택 The default server name has been set: server1. [DAS]jeus_domain.adminServer>p // 이전명령어재실행 setserver server1 The default server name has been set: server1. [DAS]jeus_domain.adminServer>si -repeat 3 -interval 2 // 명령어반복실행 (si명령어를 2초간격으로 3번실행 ) [DAS]jeus_domain.adminServer>si -repeat 3 -interval 2 > result.txt // 반복실행한명령어결과를파일로저장 (jeusadmin을실행한경로에파일생성 ) JEUS_HOME/bin/jeusadmin 스크립트에아래옵션설정시콘솔의 table size 조정이가능합니다. -Djeus.console.table.width=120 \ 12

13 1. 서버모니터링 서버의제어및모니터링방법은다음과같습니다. Webadmin 서버동작상태 (Status) SHUTDOWN STARTING STANDBY RUNNING SUSPENDING 서버가기동되지않았거나정상종료된상태서버가시작명령 ( 실행스크립트나노드매니저에의해서기동 ) 을받고기동중인상태서버에등록된애플리케이션이 deploy 를실패한상태에서서버가기동된상태서버기동이완료되고등록된 Application 이정상적으로서비스가능한상태 RUNNING 상태인서버가 suspend 명령을수행중인상태 SUSPENDED 서버에 deploy 된애플리케이션서비스중지 ( 서비스포트는 Listen 상태 ) RESUMING SHUTTING_DOWN FAILED SUSPENDED 상태의서버가 resume 명령을수행중인상태 서버가종료되고있는상태 서버가비정상종료된상태 1 2 start : 서버시작 Force : 등록된애플리케이션이 RUNNING 상태가아닌경우 (deploy 실패 ) 에도서버를 RUNNING 상태로기동 StandBy : 서버를준비상태로기동. 이상태에서애플리케이션 Distribute 가능 stop : 서버종료 Timeout : Graceful( 현재수행중인요청에대한처리보장 ) Timeout 지정 ( 단위 : 초 ) Force : Graceful 종료없이강제종료 13

14 3 Graceful : 실행중인모든요청처리완료후종료 resume : 중지된모든애플리케이션을다시시작시켜서비스가능한상태로변경 [ :00:42][2] [server1-47] [SERVER-0248] The JEUS server is RESUMING. [ :00:42][2] [server1-47] [Deploy-0098] Starting the application[webapps]. [ :00:42][2] [server1-47] [WEB-3484] ServletContext[name=webapps, path=/, ctime=tue Sep 09 20:51:15 KST 2014] started successfully. [ :00:42][2] [server1-47] [Deploy-0099] Successfully started the application[webapps]. 4 suspend : 서비스하고있던모든애플리케이션일시정지 (Listener 는내리지않음 ) [ :57:44][2] [server1-45] [SERVER-0248] The JEUS server is SUSPENDING. [ :57:44][2] [server1-45] [WEB-3485] ServletContext[name=webapps, path=/, ctime=tue Sep 09 20:51:15 KST 2014] stopped successfully. [ :57:44][2] [server1-45] [SERVER-0248] The JEUS server is SUSPENDED. 5 6 dump : 서버의 thread dump 발생 HotSpot JVM : 기본적으로 SERVER_HOME/logs/jvm.log 에생성 IBM JVM : 사용자환경파일 (EX :.profile) 에정의한 JAVACOREDIR 경로에생성. JAVACOREDIR 을지정하지않았을경우노드매니저를실행한경로에생성 garbage-collection : 해당서버의 Heap Memory 에대해 GC 수행 콘솔툴 14

15 [DAS]jeus_domain.adminServer>si // 서버상태확인 [DAS]jeus_domain.adminServer>startserver server1 // 특정MS시작 The server [server1] was successfully started. [DAS]jeus_domain.adminServer>stopserver server1 // 특정MS종료 Server [server1] was successfully stopped. [DAS]jeus_domain.adminServer>startdomain // 전체MS시작 Starting servers [server1, server2, server4]. All managed servers in the domain have been successfully started. [DAS]jeus_domain.adminServer>stopdomain // 전체MS종료 (DAS는종료되지않음 ) Stopping servers [adminserver, server1, server2, server4]. All managed servers in the domain were successfully stopped. Unable to shut down Domain Administration Server. To shutdown Domain Administration Server, use the local-shutdown command instead. [DAS]jeus_domain.adminServer>suspend -servers server1 // MS Suspend Successfully suspended server(s). [DAS]jeus_domain.adminServer>resume -servers server1 // MS Resume Successfully resumed the servers. [DAS]jeus_domain.adminServer>dump -servers server1 // thread dump 생성. 명령어를 3 초간격으로 3 번정도실행 [DAS]jeus_domain.adminServer>gc -servers server1 // gc 수행 2. Thread 모니터링 서버에서실행중인 Thread 의상태를확인하는방법은다음과같습니다. Webadmin 15

16 WebtoB 와연동된 thread hang.jsp 를 10 초간수행 (active) 중으로 tid 선택시 thread 의 Stack Trace 확인가능 _700_hang_5fjsp.java (hang.jsp 가컴파일된 java 파일 ) 63 라인에서 Thread.sleep 처리중 3 개의 thread 중, idle( 사용가능 ) 한 thread 는 2 개 1 interrupt : 특정 Thread 에 Interrupt 신호를보내서수행중인작업을중단할수있도록 Exception 발생 (Exception 처리는애플리케이션에서구현해야하며, 모든경우에대해 Interrupt 가적용되는것은아님 ). JEUS7 매뉴얼 > JEUS Server 안내서 > 3. JEUS 서버제어및모니터링 > 3.3. Thread 모니터링및제어참조 16

17 콘솔툴 [DAS]jeus_domain.adminServer>ti -server server1 // thread 상태확인 [DAS]jeus_domain.adminServer>strace -server server1 -li webtob1.. // webtob1 전체 thread 에대한 Stack Trace 확인.. [DAS]jeus_domain.adminServer>strace -server server1 82 // 특정 thread 의 Stack Trace 확인.. 17

18 [DAS]jeus_domain.adminServer>dump -servers server1 // thread dump 생성. 명령어를 3 초간격으로 3 번정도실행 관리자접속이불가능할경우, 아래와같이해당서버의프로세스 PID 를확인하여 thread dump 를생성할수있다. stech:/home/jeus>ps -ef grep java grep server1 // 서버프로세스 PID 확인 stech:/home/jeus>kill stech:/home/jeus>kill stech:/home/jeus>kill // kill -3 [PID]. 명령어를 3 초간격으로 3 번정도실행 18

19 3. Connection Pool 모니터링 서버에서사용하는 DB Connection Pool 의상태를확인하는방법에대해설명합니다. Webadmin 19

20 항목설명 Export Name Min Max Active Idle Disposable Total Wait Enabled 소스에서사용하는 JNDI명 pooling 되는객체의최소값 pooling 되는객체의최대값현재사용중인 Connection 수현재사용가능한 Connection 수임시 Connection 생성수 ( 생성후반납되지않는 Connection) 현재 Connection Pool 에생성되어있는전체 Connection 수 Connection Pool 에사용가능한 Connection 이없을경우대기할지여부 (true : Connection 이반납될때까지기다림 / false : Disposable 한 Connection 생성 ) Connection Pool 의활성화 / 비활성화상태 (true : 활성화 / false : 비활성화 ) 1 enable : Connection Pool 활성화 (Enabled 가 true 로변경됨 ) 2 shrink : Connection Pool 의 Connection 개수를설정된 min 값으로조정 3 disable : Connection Pool 비활성화. 이상태에서 Connection 요청시아래 Exception 발생 [ :48:06][1] [server1-92] [CPOOL-0017] The connection pool[datasource1] has been disabled. java.sql.sqlexception: The connection pool[datasource1] has been disabled. at jeus.jdbc.connectionpool.connectionpoolimpl.checkworkingnow(connectionpoolimpl.java:455) at jeus.jdbc.connectionpool.connectionpoolimpl.getconnection(connectionpoolimpl.java:201) 4 5 refresh : Connection Pool 의 Connection 들을새로운 Connection 으로교체 create : Connection Pool 을 min 값만큼생성 콘솔툴 [DAS]jeus_domain.adminServer>cpinfo -server server1 // 서버에서사용하는 Connection Pool 정보확인 컨넥션이사용중이지 않은상태 [DAS]jeus_domain.adminServer>createcp -server server1 -id datasource2 Servers that successfully created a connection pool : server1.. // Connection Pool 을 min 값만큼생성 20

21 [DAS]jeus_domain.adminServer>disablecp -server server1 -id datasource2 Servers that successfully disabled a connection pool : server1.. // Connection Pool 비활성화 [DAS]jeus_domain.adminServer>enablecp -server server1 -id datasource2 Servers that successfully enabled a connection pool : server1.. // Connection Pool 활성화 [DAS]jeus_domain.adminServer>refreshcp -server server1 -id datasource2 Servers that successfully refreshed a connection pool : server1 Servers that failed to refresh a connection pool : none. [DAS]jeus_domain.adminServer>shrinkcp -server server1 -id datasource1 Servers that successfully shrank a connection pool : server1 Servers that failed to shrink a connection pool : none. // 새로운 Connection 으로교체 // Connection 개수를 min 값으로조정 21

22 4. Web 모니터링 관리자에서웹엔진을모니터링하는방법은다음과같습니다. Webadmin 웹엔진내의세션매니저정보 active 상태의세션수 리스너및커넥터내의 Thread 정보 웹엔진에서서비스하는애플리케이션의요청처리상태 서버의총 VM 메모리와사용가능한 VM 메모리 클러스터환경에서웹엔진내의세션매니저정보 백업서버명 22

23 콘솔툴 [DAS]jeus_domain.adminServer>st -s -server server1 Standard session information (server1_web) // 세션매니저정보확인 [DAS]jeus_domain.adminServer>st -t -server server1 Thread information : (server1_web) // 웹엔진내의 thread 정보확인 [DAS]jeus_domain.adminServer>st -r -server server1 Request information of contexts // 애플리케이션의요청처리상태확인 [DAS]jeus_domain.adminServer>st -m -server server1 Memory information : (server1_web) // 서버의 VM 메모리확인 23

24 5. JMS 모니터링 본절에서는 JEUS MQ 서버의모니터링방법에대해설명합니다. Webadmin 24

25 주요항목 Name Export Name Type Dead Letter Destination Consumer Count Processed Messages Remaining Messages Delivered Messages 등록된 Destination 명 Client 에서사용하는 Destination 의 JNDI명 Destination 타입해당 Destination 에서정상적으로처리되지못한메시지들을보관할 Destination 명현재 active Consumer 수전체메시지수 Consumer 로전달되지않은메시지 (Processed Messages - Remaining Messages) 수 1 Production Suspended true : Destination 의생산이일시중지된상태. 이상태에서 Destination 으로메시지를보낼경우 Exception jeus.jms.common.destination.invaliddestinationstateexception: The destination EQ is now produce-suspended. at jeus.jms.common.util.jmsexceptionfactory.createjmsexception(jmsexceptionfactory.java:170) at jeus.jms.common.util.jmsexceptionfactory.createjmsexception(jmsexceptionfactory.java:115) 2 false : Destination 이정상적으로서비스되고있는상태 Consumption Suspended true : Destination 의소비가일시중지된상태. 이상태에서 Destination 에서메시지를소비하고자할경우해당 Destination 에메시지가존재하지않을때와동일하게동작함 false : Destination 이정상적으로서비스되고있는상태 콘솔툴 [DAS]jeus_domain.adminServer>jmsconf -server server1 Connection Factory Information // Conntection Factory 정보확인 [DAS]jeus_domain.adminServer>jmsclient -server server1 // 클라이언트정보확인 25

26 [DAS]jeus_domain.adminServer> jmsdest -server server1 Destination information in Server server1 // Destination 정보확인 [DAS]jeus_domain.adminServer>jmsdest -server server1 -name ExamplesTopic Detailed destination information in Server server1 // 특정 Destination 상세정보확인 26

27 6. Application 모니터링 Application 의상태를확인하는방법에대해설명합니다. Webadmin 도메인에서 Application 을 식별할수있는 ID RUNNING 상태인경우활성화됨 물리적인 Application 경로 Application 동작상태 (State) RUNNING INSTALLED DEPLOYED DISTRIBUTED Application 을서비스할수있는서버가하나이상 Running 인상태 Application 파일이도메인으로 upload 된상태이상태에서 Deploy 대상을지정해서 Deploy 나 distribute 명령수행가능 Deploy 된이력이있는 Application 의대상서버가모두 RUNNING 상태가아닌경우 Application 이 Distribute 를성공적으로완료한상태 (Client 에서요청할수없는상태 ) 이때대상서버들이모두 SHUTDOWN 상태이더라도 DISTRIBUTED 로보여짐 27

28 install : 클라이언트머신에있는애플리케이션을 DAS 로업로드함. Install 을실행할경우 JEUS_HOME/domains/domain 명 /.applications 에모듈이등록됨 deploy : 애플리케이션파일이 DAS 와같은머신에있는경우, 도메인에 Install 하지않고 Deploy 가능 start : 애플리케이션을서비스가능한 RUNNING 상태로변경 stop : 서비스중인애플리케이션일시정시 (DISTRIBUTED 상태로변경 ). 이상태에서해당애플리케이션으로요청시 Exception javax.servlet.unavailableexception: The web application has been suspended. [ctx=, mapping idx=null] at jeus.servlet.engine.requestprocessor.checkservletcontextstate(requestprocessor.java:354) deploy : INSTALLED 상태의애플리케이션을서버나클러스터에 Deploy undeploy : 애플리케이션을서버나클러스터로부터 Undeploy Timeout : 현재처리중인서비스가완료될때까지 Undeploy 를대기하는시간지정 Graceful : new/old/all 중선택. 도메인에 old 애플리케이션과 new 애플리케이션이모두존재할때어떤애플리케이션을 Undeploy 할지지정 ( 웹애플리케이션만적용 ) Force : 애플리케이션을즉시 Undeploy uninstall : 애플리케이션이 INSTALLED 이나 DEPLOYED 상태일때 Uninstall 가능. Uninstall 을실행할경우 JEUS_HOME/domains/domain 명 /.applications 에서모듈이삭제됨 콘솔툴 [DAS]jeus_domain.adminServer>installapp /home/jeus/webapps7.war -id webapps7 Successfully installed the application [webapps7]. [DAS]jeus_domain.adminServer>appinfo // 애플리케이션정보확인 Application information for the domain [jeus_domain]. // DAS 로애플리케이션 Install [DAS]jeus_domain.adminServer>deploy webapps7 -servers server4 deploy the application for the application [webapps7] succeeded. [DAS]jeus_domain.adminServer>appinfo Application information for the domain [jeus_domain]. // DAS 에 Install 한애플리케이션을서버에 Deploy [DAS]jeus_domain.adminServer>undeploy webapps7 // 서버나클러스터로부터애플리케이션 Undeploy Undeploying [webapps7] (This may take time due to graceful undeployment)... undeploy the application for the application [webapps7] succeeded. successfully undeployed (elapsed = 1328ms) [DAS]jeus_domain.adminServer>uninstall webapps7 // DAS에서애플리케이션 Uninstall // 서버나클러스터에서애플리케이션을참조하는경우, Undeploy 후 Uninstall실행 uninstall the application for the application [webapps7] succeeded. : Successfully deleted [webapps7]. 28

29 Copyright 2014 TmaxSoft Co., Ltd. All Rights Reserved. Trademarks Tmax, WebtoB, WebT, JEUS, ProFrame, SysMaster and OpenFrame are registered trademarks of TmaxSoft Co., Ltd. Other products, titles or services may be registered trademarks of their respective companies. Contact Information TmaxSoft can be contacted at the following addresses to arrange for a consulting team to visit your company and discuss your options. Korea TmaxSoft Co., Ltd 5, Hwangsaeul-ro 329beon-gil, Bundang-gu, Seongnam-si, Gyeonggi-do. South Korea Tel: Fax: info@tmax.co.kr Web (Korean): Technical Support: USA TmaxSoft, Inc. 560 Sylvan Avenue Englewood Cliffs, NJ U.S.A Tel: Fax: info@tmaxsoft.com Web (English): Russia Tmax Russia L.L.C. Grand Setun Plaza, No A204 Gorbunova st.2, Moscow, Tel: +7(495) info.rus@tmaxsoft.com Web (Russian): Singapore Tmax Singapore Pte. Ltd. 430 Lorong 6, Toa Payoh #10-02, OrangeTee Building. Singapore Tel: info.sg@tmaxsoft.com United Kingdom TmaxSoft UK Ltd. Surrey House, Suite 221, 34 Eden Street, Kingston-Upon- Thames, KT1 1ER United Kingdom Tel: + 44-(0) info.uk@tmaxsoft.com Web (English): Japan TmaxSoft Japan Co., Ltd. 5F Sanko Bldg, Mita, Minato-Ku, Tokyo, Japan Tel: Fax: info.jp@tmaxsoft.com Web (Japanese): China TmaxSoft China Co., Ltd. Beijing Silver Tower, RM 1508, 2 North Rd Dong San Huan, Chaoyang District, Beijing, China, China Tel: ~8 Fax: info.cn@tmaxsoft.com Web (Chinese): Brazil TmaxSoft Brazil Avenida Copacabana, andar 18 do Forte Empresarial, Alphaville - Barueri, Sao Paulo, SP-Brasil CEP contato.brasil@tmaxsoft.com TD-JSGI-D

목차 1. 노드매니저종류 Java Type SSH Type 노드설정파일및로깅 nodes.xml jeusnm.properties <servername>.properties...

목차 1. 노드매니저종류 Java Type SSH Type 노드설정파일및로깅 nodes.xml jeusnm.properties <servername>.properties... 개발및운영 JEUS7 Node Manager 가이드 2014. 12. 15 목차 1. 노드매니저종류... 3 1.1 Java Type... 3 1.2 SSH Type... 3 2. 노드설정파일및로깅... 3 2.1 nodes.xml... 3 2.2 jeusnm.properties... 4 2.3 .properties... 4 2.4 JeusNodeManager.log...

More information

[JEUS 7] eclipse plug-in 연동 1. 개요 Eclipse 와 JEUS 7 연동시필요한 plug-in 제공및환경설정에관한가이드제공하여 Eclipse 에서 JEUS 7 기동및 종료테스트할수있는방법을기술하였습니다. 2. Plug-in 설치 2.1 [Step

[JEUS 7] eclipse plug-in 연동 1. 개요 Eclipse 와 JEUS 7 연동시필요한 plug-in 제공및환경설정에관한가이드제공하여 Eclipse 에서 JEUS 7 기동및 종료테스트할수있는방법을기술하였습니다. 2. Plug-in 설치 2.1 [Step 기타지식 [JEUS 7.0] eclipse plug-in 연동 2015. 06. 09 [JEUS 7] eclipse plug-in 연동 1. 개요 Eclipse 와 JEUS 7 연동시필요한 plug-in 제공및환경설정에관한가이드제공하여 Eclipse 에서 JEUS 7 기동및 종료테스트할수있는방법을기술하였습니다. 2. Plug-in 설치 2.1 [Step. 1]

More information

개발및운영 Tibero DB Link (Tibero To Oracle) - Local 방식

개발및운영 Tibero DB Link (Tibero To Oracle) - Local 방식 Tibero DB Link (Tibero To Oracle) - Local 방식 2014. 04. 16. 목차 1. 구성환경... 3 2. 환경설정... 3 2.1. Tibero 서버 (AIX) 에 Oracle instance Client 파일을업로드... 3 2.2. Oracle Instance Client에대한환경설정등록 (.profile)... 4 2.3.

More information

개발및운영 Tibero Perl 연동

개발및운영 Tibero Perl 연동 Tibero Perl 연동 2014. 05. 27. 목차 1. Windows에서의홖경구성... 3 1.1 Tibero ODBC Driver 설치... 3 1.2. Tool 설치... 5 2. Unix에서의홖경구성... 6 2.1 iodbc 설치... 7 2.2 Tibero 설치... 7 2.3 Iodbc drvier manager 등록... 7 3. Tibero

More information

설치및환경설정 JEUS Thread State Notify 설정

설치및환경설정 JEUS Thread State Notify 설정 JEUS Thread State Notify 설정 2014. 07. 02 목차 1. thread-state-notify 설정... 3 1.1 시나리오 #1. max-thread-active-time : 10초... 3 1.2 시나리오 #2. max-thread-active-time : 10초, thread-interrupt-execution : true...

More information

튜닝및모니터링 OS 별 TCP Recommend Parameter for WebtoB/JEUS

튜닝및모니터링 OS 별 TCP Recommend Parameter for WebtoB/JEUS OS 별 TCP Recommend Parameter for WebtoB/JEUS 2014. 11. 26 목차 1. AIX... 3 1.1 TCP_KEEPINIT... 3 1.2 TCP_KEEPIDLE... 3 1.3 TCP_KEEPINTVL... 4 1.4 TCP_KEEPCNT... 4 1.5 TCP_TIMEWAIT... 4 1.6 CLEAN_PARTIAL_CONNS...

More information

설치및환경설정 Tibero tbprobe 사용법과원격지포트체크

설치및환경설정 Tibero tbprobe 사용법과원격지포트체크 Tibero tbprobe 사용법과원격지포트체크 2014. 04. 23. 목차 1. tbprobe 사용... 3 1.1. 로컬호스트 tibero 체크... 3 1.2. 원격호스트 tibero 체크... 3 2. tbprobe 상태값... 5 3. tbprobe 연결방법... 6 3.1. IP 와 listener_port 기재시... 6 3.2. IP 와 listener_port

More information

Linux 권장커널파라미터 1. 커널파라미터별설명및설정방법 1.1 nofile ( max number of open files ) 설명 : 지원되는열린파일수를지정합니다. 기본설정이보통대부분의응용프로그램에대해충분합니다. 이매개 변수에설정된값이너무낮으면파일열기오류, 메모리

Linux 권장커널파라미터 1. 커널파라미터별설명및설정방법 1.1 nofile ( max number of open files ) 설명 : 지원되는열린파일수를지정합니다. 기본설정이보통대부분의응용프로그램에대해충분합니다. 이매개 변수에설정된값이너무낮으면파일열기오류, 메모리 튜닝및모니터링 Linux 권고커널파라미터 2014. 12. 11 Linux 권장커널파라미터 1. 커널파라미터별설명및설정방법 1.1 nofile ( max number of open files ) 설명 : 지원되는열린파일수를지정합니다. 기본설정이보통대부분의응용프로그램에대해충분합니다. 이매개 변수에설정된값이너무낮으면파일열기오류, 메모리할당장애또는연결설정오류가발생할수있습니다.

More information

개요오라클과티베로에서 JDBC 를통해접속한세션을구분할수있도록 JDBC 접속시 ConnectionProperties 를통해구분자를넣어줄수있다. 하나의 Node 에다수의 WAS 가있을경우 DB 에서 Session Kill 등의동작수행시원하는 Session 을선택할수있다.

개요오라클과티베로에서 JDBC 를통해접속한세션을구분할수있도록 JDBC 접속시 ConnectionProperties 를통해구분자를넣어줄수있다. 하나의 Node 에다수의 WAS 가있을경우 DB 에서 Session Kill 등의동작수행시원하는 Session 을선택할수있다. 설치및환경설정 JDBC 접속세션구분 / 확인 2013. 11. 01 개요오라클과티베로에서 JDBC 를통해접속한세션을구분할수있도록 JDBC 접속시 ConnectionProperties 를통해구분자를넣어줄수있다. 하나의 Node 에다수의 WAS 가있을경우 DB 에서 Session Kill 등의동작수행시원하는 Session 을선택할수있다. 사용하기 JEUS 에서설정방법

More information

윈백및업그레이드 Tibero Flashback 가이드

윈백및업그레이드 Tibero Flashback 가이드 Tibero Flashback 가이드 2014. 05. 09. 목차 1. FLASHBACK 소개... 3 1.1. Flashback 개요... 3 1.2. Flashback 기능... 3 2. FLASHBACK 기능... 3 2.1. FLASHBACK QUERY... 3 2.1.1. FLASHBACK QUERY 개요... 3 2.1.2. FLASHBACK QUERY

More information

SSL 접속테스트 본문서에서 WebtoB 가설치된디렉토리는 [WEBTOBDIR] 로표기하겠습니다.. 윈도우계열과리눅스 / 유닉스계열모두명령은동일하므로윈도우를기준으로설명하도록하겠습니다. 1. WebtoB 설정 1.1 Test 용인증서생성 SSL 접속테스트를위해 Webto

SSL 접속테스트 본문서에서 WebtoB 가설치된디렉토리는 [WEBTOBDIR] 로표기하겠습니다.. 윈도우계열과리눅스 / 유닉스계열모두명령은동일하므로윈도우를기준으로설명하도록하겠습니다. 1. WebtoB 설정 1.1 Test 용인증서생성 SSL 접속테스트를위해 Webto 개발및운영 SSL 접속테스트 Console 을통한 SSL 접속테스트 2014. 06. 27 SSL 접속테스트 본문서에서 WebtoB 가설치된디렉토리는 [WEBTOBDIR] 로표기하겠습니다.. 윈도우계열과리눅스 / 유닉스계열모두명령은동일하므로윈도우를기준으로설명하도록하겠습니다. 1. WebtoB 설정 1.1 Test 용인증서생성 SSL 접속테스트를위해 WebtoB

More information

목차 JEUS JNLP Client Sample 가이드 JNLP 란 JNLP의이점 TEST TEST 환경 TEST Sample sample application 셋팅 (ser

목차 JEUS JNLP Client Sample 가이드 JNLP 란 JNLP의이점 TEST TEST 환경 TEST Sample sample application 셋팅 (ser 기술교육 JEUS JNLP Sample 가이드 2015. 06. 19 목차 JEUS JNLP Client Sample 가이드... 3 1. JNLP 란... 3 2. JNLP의이점... 3 3. TEST... 3 3.1 TEST 환경... 3 3.2 TEST Sample... 4 3.2.1 sample application 셋팅 (server side)...

More information

목차 1. TABLE MIGRATOR 란? TABLE MIGRATOR 홖경설정 TABLE MIGRATOR 바이너리 Shell 설정 Migrator.Properterties 파일설정 TAB

목차 1. TABLE MIGRATOR 란? TABLE MIGRATOR 홖경설정 TABLE MIGRATOR 바이너리 Shell 설정 Migrator.Properterties 파일설정 TAB 윈백및업그레이드 Tibero Table Migrator 사용법 2014. 05. 12. 목차 1. TABLE MIGRATOR 란?... 3 2. TABLE MIGRATOR 홖경설정... 3 2.1. TABLE MIGRATOR 바이너리... 3 2.2. Shell 설정... 4 2.3. Migrator.Properterties 파일설정... 4 3. TABLE

More information

목차 1. 개요 개요 연동테스트홖경 PowerBuilder Connection Tibero ODBC Driver 설정 PowerBuilder Connection 설정 Tiber

목차 1. 개요 개요 연동테스트홖경 PowerBuilder Connection Tibero ODBC Driver 설정 PowerBuilder Connection 설정 Tiber 개발및운영 Tibero Powerbuilder 연동 2014. 05. 27. 목차 1. 개요... 3 1.1 개요... 3 1.2 연동테스트홖경... 3 2. PowerBuilder Connection... 4 2.1 Tibero ODBC Driver 설정... 4 2.2 PowerBuilder Connection 설정... 5 3. Tibero - PowerBuilder

More information

SSL(Secure Socket Layer) 과 TLS(Transport Layer Security) 개요 전자상거래가활발해지면서웹보안이매우중요해지고있으며, 최근정보통신망법의개정으로아무리소상공인이라 도홈페이지운영시개인정보를취급하고있다면아래와같은내용을조치하도록되어있습니다

SSL(Secure Socket Layer) 과 TLS(Transport Layer Security) 개요 전자상거래가활발해지면서웹보안이매우중요해지고있으며, 최근정보통신망법의개정으로아무리소상공인이라 도홈페이지운영시개인정보를취급하고있다면아래와같은내용을조치하도록되어있습니다 기타지식 SSL 과 TLS 2015. 07.20 SSL(Secure Socket Layer) 과 TLS(Transport Layer Security) 개요 전자상거래가활발해지면서웹보안이매우중요해지고있으며, 최근정보통신망법의개정으로아무리소상공인이라 도홈페이지운영시개인정보를취급하고있다면아래와같은내용을조치하도록되어있습니다 이러한 보안서버 의기반이되는 SSL/TLS

More information

튜닝및모니터링 HP JVM 튜닝옵션

튜닝및모니터링 HP JVM 튜닝옵션 HP JVM 튜닝옵션 2013. 11. 01 목차 1. 개요... 3 2. JVM 특징소개... 3 3. JVM 주요옵션소개... 3 4. 분석기술... 16 2 1. 개요 HP JVM 의특징을살펴보고, TroubleShooting 방법과, 실제 Site 튜닝사례를살펴보도록한다. 2. JVM 특징소개 JVM 메모리영역. 3. JVM 주요옵션소개 GC command-line

More information

목차 JEUS EJB Session Bean가이드 stateful session bean stateful sample 가이드 sample source 결과확인 http session에

목차 JEUS EJB Session Bean가이드 stateful session bean stateful sample 가이드 sample source 결과확인 http session에 개념정리및샘플예제 EJB stateful sample 문서 2016. 01. 14 목차 JEUS EJB Session Bean가이드... 3 1. stateful session bean... 3 1.1 stateful sample 가이드... 3 1.1.1 sample source... 3 1.1.2 결과확인... 6 1.2 http session에서사용하기...

More information

Microsoft Word - AnyLink Introduction v3.2.3.doc

Microsoft Word - AnyLink Introduction v3.2.3.doc Copyright 2007 Tmax Soft Co., Ltd. All Rights Reserved. AnyLInk Copyright Notice Copyright 2007 Tmax Soft Co., Ltd. All Rights Reserved. Tmax Soft Co., Ltd. 대한민국서울시강남구대치동 946-1 글라스타워 18 층우 )135-708 Restricted

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

[Brochure] KOR_TunA

[Brochure] KOR_TunA LG CNS LG CNS APM (TunA) LG CNS APM (TunA) 어플리케이션의 성능 개선을 위한 직관적이고 심플한 APM 솔루션 APM 이란? Application Performance Management 란? 사용자 관점 그리고 비즈니스 관점에서 실제 서비스되고 있는 어플리케이션의 성능 관리 체계입니다. 이를 위해서는 신속한 장애 지점 파악 /

More information

Intro to Servlet, EJB, JSP, WS

Intro to Servlet, EJB, JSP, WS ! Introduction to J2EE (2) - EJB, Web Services J2EE iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc NTAS and FRAME BUILDER Install Guide NTAS and FRAME BUILDER Version 2.5 Copyright 2003 Ari System, Inc. All Rights reserved. NTAS and FRAME BUILDER are trademarks or registered trademarks of Ari System,

More information

[Brochure] KOR_LENA WAS_

[Brochure] KOR_LENA WAS_ LENA Web Application Server LENA Web Application Server 빠르고확장가능하며장애를선대응할수있는운영중심의고효율차세대 Why 클라우드환경과데이터센터운영의노하우가결집되어편리한 관리기능과대용량트랜잭션을빠르고쉽게구현함으로고객의 IT Ownership을강화하였습니다. 고객의고민사항 전통 의 Issue Complexity Over

More information

Interstage4 설치가이드

Interstage4 설치가이드 Interstage Application Server V501 Operation Guide Internet 1 1 1 FJApache FJApache (WWW (WWW server) server) - - file file - - 2 2 InfoProviderPro InfoProviderPro (WWW (WWW server) server) - - file file

More information

목차 1. 웹서비스의예 테스트환경설치 설치전고려사항 설치할공간확보 테스트환경구축 설치파일준비 설치 Windows에서의설치 Linux 에서

목차 1. 웹서비스의예 테스트환경설치 설치전고려사항 설치할공간확보 테스트환경구축 설치파일준비 설치 Windows에서의설치 Linux 에서 설치및환경설정 웹환경 (JEUS 6) 구성 2014. 12. 10 목차 1. 웹서비스의예... 3 2. 테스트환경설치... 4 2.1 설치전고려사항... 4 2.2 설치할공간확보... 4 3. 테스트환경구축... 5 3.1 설치파일준비... 5 3.2 설치... 8 3.1.1 Windows에서의설치... 8 3.1.2 Linux 에서설치... 24 2 웹서비스의구성

More information

개발및운영 Eclipse 를이용한 ANT 활용방법

개발및운영 Eclipse 를이용한 ANT 활용방법 Eclipse 를이용한 ANT 활용방법 2014. 04. 09 목차 Eclipse를이용한 ANT 활용방법... 3 1. ant 사용전준비사항... 3 1.1 ant Install... 3 1.2 Java Project 생성... 5 2. ant 활용방법... 10 2.1 ant project 생성... 10 3. ant 설정... 13 3.1 ant directory...

More information

튜닝및모니터링 Tibero EVENT 가이드

튜닝및모니터링 Tibero EVENT 가이드 Tibero EVENT 가이드 2014. 07. 14. 목차 1. TB_EVENT 띾?... 3 2. TB_EVENT 설정... 3 2.1. EVENT 파라미터... 3 2.1.1. EVENT_TRACE... 3 2.1.2. EVENT_TRACE_DEST... 4 2.1.3. EVENT_TRACE_MAP... 4 2.1.4. EVENT_TRACE_FILE_SIZE...

More information

No Slide Title

No Slide Title J2EE J2EE(Java 2 Enterprise Edition) (Web Services) :,, SOAP: Simple Object Access Protocol WSDL: Web Service Description Language UDDI: Universal Discovery, Description & Integration 4. (XML Protocol

More information

목차 1. 개요 현상 문제분석 문제해결

목차 1. 개요 현상 문제분석 문제해결 이슈및장애 OutOfMemory 장애조치방법 2013. 11. 01 목차 1. 개요... 3 2. 현상... 3 3. 문제분석... 5 4. 문제해결... 13 2 1. 개요 OutOfMemory Exception 정의 Garbage Collector 가새로운 Object 를유지하기위해충분한메모리공간을확보하지못할때발생함. Vendor 사의 JVM 메모리모델방식을참조하여야함.

More information

컨설팅사업본부 운영방안

컨설팅사업본부 운영방안 JEUS7 운영자가이드 Ⅰ Ⅱ Ⅲ Ⅳ Ⅴ JEUS7 특징구성요소 JEUS 기동 / 종료기본환경설정로그및모니터링 Ⅰ. JEUS7 특징 1. What's New? JEUS7 2. Java EE 6 특징과주요표준명세 3. JEUS6 VS JEUS7 What s New? JEUS7 JEUS7 은 WAS Trend 변화를수용하여클라우드아키텍처지원, 기능및성능개선, Java

More information

1. Windows 설치 (Client 설치 ) 원하는위치에다운받은발송클라이언트압축파일을해제합니다. Step 2. /conf/config.xml 파일수정 conf 폴더에서 config.xml 파일을텍스트에디터를이용하여 Open 합니다. config.xml 파일에서, 아

1. Windows 설치 (Client 설치 ) 원하는위치에다운받은발송클라이언트압축파일을해제합니다. Step 2. /conf/config.xml 파일수정 conf 폴더에서 config.xml 파일을텍스트에디터를이용하여 Open 합니다. config.xml 파일에서, 아 LG U+ SMS/MMS 통합클라이언트 LG U+ SMS/MMS Client Simple Install Manual LG U+ SMS/MMS 통합클라이언트 - 1 - 간단설치매뉴얼 1. Windows 설치 (Client 설치 ) 원하는위치에다운받은발송클라이언트압축파일을해제합니다. Step 2. /conf/config.xml 파일수정 conf 폴더에서 config.xml

More information

Samsung SDS Enterprise Cloud Networking CDN Load Balancer WAN

Samsung SDS Enterprise Cloud Networking CDN Load Balancer WAN Samsung SDS Enterprise Cloud Networking CDN Load Balancer WAN Enterprise Cloud Networking CDN (Content Delivery Network) 전 세계에 배치된 콘텐츠 서버를 통해 빠른 전송을 지원하는 서비스 전 세계에 전진 배치된 CDN 서버를 통해 사용자가 요청한 콘텐츠를 캐싱하여

More information

Microsoft Word - Jeus_System_Architecture.doc

Microsoft Word - Jeus_System_Architecture.doc Whitepaper JEUS Syetem Architecture Copyrightc 2001 TmaxSoft Co.,Ltd. All Right Reserved. Contents JEUS System 2 I. JEUS System 운영 1. JEUS Manager 4 2. Naming & Directory Server 5 3. Security Server 5

More information

Apache2 + Tomcat 5 + JK2 를 사용한 로드밸런싱과 세션 복제 클러스터링 사이트 구축

Apache2 + Tomcat 5 + JK2 를 사용한 로드밸런싱과 세션 복제 클러스터링 사이트 구축 Apache2 + Tomcat 5 + JK2 : 2004-11-04 Release Ver. 1.0.0.1 Email : ykkim@cabsoftware.com Apache JK2 ( )., JK2 Apache2 JK2. 3 - JK2, Tomcat -.. 3, Stress ( ),., localhost ip., 2. 2,. Windows XP., Window

More information

J2EE & Web Services iSeminar

J2EE & Web Services iSeminar 9iAS :, 2002 8 21 OC4J Oracle J2EE (ECperf) JDeveloper : OLTP : Oracle : SMS (Short Message Service) Collaboration Suite Platform Email Developer Suite Portal Java BI XML Forms Reports Collaboration Suite

More information

.

. JEUS 6 & WebtoB 4.1 관리자 2015.09 Ⅰ Ⅱ Ⅲ JEUS 설정 WebtoB 연동설정 Tibero 연동설정 Ⅰ JEUS 설정 컨테이너생성 Application 디플로이 컨테이너생성 관리자화면접속 http://ip-address:9744/webadmin 접속 ID : administrator PW : 설치단계에서설정한관리자암호 3/36 컨테이너생성

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

목차 1. Tibero 4 설치개요 Install 전 Check 사항 H/W 요구사항 Tibero 4 설치 Tibero 설치폴더생성 Tibero 바이너리압축해제 $T

목차 1. Tibero 4 설치개요 Install 전 Check 사항 H/W 요구사항 Tibero 4 설치 Tibero 설치폴더생성 Tibero 바이너리압축해제 $T 설치및환경설정 Tibero 4 SP1 설치가이드 - Windows 환경 2014. 05. 27. 목차 1. Tibero 4 설치개요... 3 1.1. Install 전 Check 사항... 3 1.2. H/W 요구사항... 3 2. Tibero 4 설치... 4 2.1. Tibero 설치폴더생성... 4 2.2. Tibero 바이너리압축해제... 4 2.3.

More information

Tmax

Tmax Tmax JTmaxServer User Guide Tmax v5.0 SP1 Copyright 2009 TmaxSoft Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2009 TmaxSoft Co., Ltd. All Rights Reserved. 대한민국경기도성남시분당구서현동 263 분당스퀘어 (AK 프라자

More information

목차 1. TAC 구성준비사항 TAC 구성순서 VirtualBox 으로 CentOS 설치 VirtualBox 에서 TAC 구성

목차 1. TAC 구성준비사항 TAC 구성순서 VirtualBox 으로 CentOS 설치 VirtualBox 에서 TAC 구성 설치및환경설정 VirtualBox TAC 구성가이드 2015. 08. 04 목차 1. TAC 구성준비사항... 3 2. TAC 구성순서... 3 2.1 VirtualBox 으로 CentOS 설치... 3 2.2 VirtualBox 에서 TAC 구성... 40 2 1. TAC 구성준비사항 1. CentOS-5.9 64bit 2. Tibero 5 SP1 FS01

More information

JEUS

JEUS JEUS Applications & Deployment 안내서 JEUS v7.0 Fix#1 Copyright 2013 TmaxSoft Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2013 TmaxSoft Co., Ltd. All Rights Reserved. 대한민국경기도성남시분당구서현동 272-6

More information

JEUS 서버 설정 가이드

JEUS 서버 설정 가이드 Copyright 2008 TmaxSoft Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2008 TmaxSoft Co., Ltd. All Rights Reserved. TmaxSoft Co., Ltd. Document Info Document Name: Document Date: 2008-08-01

More information

Windows Server 2012

Windows Server  2012 Windows Server 2012 Shared Nothing Live Migration Shared Nothing Live Migration 은 SMB Live Migration 방식과다른점은 VM 데이터파일의위치입니다. Shared Nothing Live Migration 방식은 Hyper-V 호스트의로컬디스크에 VM 데이터파일이위치합니다. 반면에, SMB

More information

기술자료

기술자료 1 쪽중 1 쪽 WebLogic Server 8.1 Tutorials 03 - 리소스 (JDBC, JMS 등 ) 설정 본문서에서는 MedRec 애플리케이션을디플로이하고서비스하기위해서필요한 WebLogic Server 의리소스들을설정하는방법에대하여설명할것이다. 1. JDBC(Java Database Connectivity) Connection Pool 과 Data

More information

Microsoft Word - src.doc

Microsoft Word - src.doc IPTV 서비스탐색및콘텐츠가이드 RI 시스템운용매뉴얼 목차 1. 서버설정방법... 5 1.1. 서비스탐색서버설정... 5 1.2. 컨텐츠가이드서버설정... 6 2. 서버운용방법... 7 2.1. 서비스탐색서버운용... 7 2.1.1. 서비스가이드서버실행... 7 2.1.2. 서비스가이드정보확인... 8 2.1.3. 서비스가이드정보추가... 9 2.1.4. 서비스가이드정보삭제...

More information

< 목차 > Ⅰ. 개요 3 Ⅱ. 실시간스팸차단리스트 (RBL) ( 간편설정 ) 4 1. 메일서버 (Exchange Server 2007) 설정변경 4 2. 스팸차단테스트 10

< 목차 > Ⅰ. 개요 3 Ⅱ. 실시간스팸차단리스트 (RBL) ( 간편설정 ) 4 1. 메일서버 (Exchange Server 2007) 설정변경 4 2. 스팸차단테스트 10 (https://www.kisarbl.or.kr) < 목차 > Ⅰ. 개요 3 Ⅱ. 실시간스팸차단리스트 (RBL) ( 간편설정 ) 4 1. 메일서버 (Exchange Server 2007) 설정변경 4 2. 스팸차단테스트 10 Ⅰ. 개요 실시간스팸차단리스트 (RBL) 는메일서버를운영하는누구나손쉽게효과적으로스팸수신을차단하는데이용할수있도록한국인터넷진흥원 (KISA)

More information

Interstage5 SOAP서비스 설정 가이드

Interstage5 SOAP서비스 설정 가이드 Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

슬라이드 1

슬라이드 1 NeoDeveloper 설치가이드 차례 1. 환경 3 2. 설치 3 2.1 웹서버설치 3 Tomcat 7 3 JDK 1.6 3 2.2 NeoDeveloper 설치 3 Neo Developer 서버구성 3 Demo용 User Application 구성 4 Neo Developer 서버 Data File 4 Client 개발 Tool 설치 4 3. 설정 5 3.1

More information

Webtob( 멀티도메인 ) SSL 인증서갱신설치가이드 본문서는주식회사한국기업보안에서 SSL 보안서버인증서설치를위해작성된문서로 주식회사한국기업보안의동의없이무단으로사용하실수없습니다. [ 고객센터 ] 한국기업보안. 유서트기술팀 Copyright 201

Webtob( 멀티도메인 ) SSL 인증서갱신설치가이드 본문서는주식회사한국기업보안에서 SSL 보안서버인증서설치를위해작성된문서로 주식회사한국기업보안의동의없이무단으로사용하실수없습니다. [ 고객센터 ] 한국기업보안. 유서트기술팀 Copyright 201 Webtob( 멀티도메인 ) SSL 인증서갱신설치가이드. [ 고객센터 ] 한국기업보안. 유서트기술팀 02-512-9375 멀티및와일드인증서의경우포트번호를동일하게설정이가능하다. (https 통신으로 443 으로통일가능 ) 1. 발급받으신인증서를해당 SSL 폴더에업로드또는저장합니다. [root@localhost New]$ cp star.ucert.co.kr* /webtob/ssl

More information

Cloud Friendly System Architecture

Cloud Friendly System Architecture -Service Clients Administrator 1. -Service 구성도 : ( 좌측참고 ) LB(LoadBlancer) 2. -Service 개요 ucloud Virtual Router F/W Monitoring 개념 특징 적용가능분야 Server, WAS, DB 로구성되어 web service 를클라우드환경에서제공하기위한 service architecture

More information

untitled

untitled 3 IBM WebSphere User Conference ESB (e-mail : ljm@kr.ibm.com) Infrastructure Solution, IGS 2005. 9.13 ESB 를통한어플리케이션통합구축 2 IT 40%. IT,,.,, (Real Time Enterprise), End to End Access Processes bounded by

More information

ÃÖÁ¾PDF¿ë

ÃÖÁ¾PDF¿ë Meet A to Z of Global Leading IT Meet A to Z of Global Leading IT Contents Introduction CEO Message Brand Identity & Vision Core Competence Smart Technology, Service & Smart People Leadership & Love Global

More information

JVM 메모리구조

JVM 메모리구조 조명이정도면괜찮조! 주제 JVM 메모리구조 설미라자료조사, 자료작성, PPT 작성, 보고서작성. 발표. 조장. 최지성자료조사, 자료작성, PPT 작성, 보고서작성. 발표. 조원 이용열자료조사, 자료작성, PPT 작성, 보고서작성. 이윤경 자료조사, 자료작성, PPT작성, 보고서작성. 이수은 자료조사, 자료작성, PPT작성, 보고서작성. 발표일 2013. 05.

More information

SQL Developer Connect to TimesTen 유니원아이앤씨 DB 기술지원팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 작성자

SQL Developer Connect to TimesTen 유니원아이앤씨 DB 기술지원팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 작성자 SQL Developer Connect to TimesTen 유니원아이앤씨 DB 팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 2010-07-28 작성자 김학준 최종수정일 2010-07-28 문서번호 20100728_01_khj 재개정이력 일자내용수정인버전

More information

설치및홖경설정 Tibero 4 SP1 TAC 설치 - Windows 홖경

설치및홖경설정 Tibero 4 SP1 TAC 설치 - Windows 홖경 설치및홖경설정 Tibero 4 SP1 TAC 설치 - Windows 홖경 2014. 04. 16. 목차 1. TAC 개요... 3 1.1 개요... 3 1.2 요구사양... 3 2. TAC 구성... 4 2.1 공유 File System 구성... 4 2.2 TAC를위한추가초기화파라미터... 4 2.3 이중화서버의클라이언트접속정보설정... 5 3. 설치및구성

More information

단계

단계 본문서에서는 Tibero RDBMS 에서제공하는 Oracle DB Link 를위한 gateway 설치및설정방법과 Oracle DB Link 사용법을소개한다. Contents 1. TIBERO TO ORACLE DB LINK 개요... 3 1.1. GATEWAY 란... 3 1.2. ORACLE GATEWAY... 3 1.3. GATEWAY 디렉터리구조...

More information

FY2005 LIG

FY2005 LIG FY2005 LIG www.lig.co.kr FY2005 LIG 2005 LIG 7-44 "Profitable Growth" 14.5% 3 3,849 0.6%p 14.8% 3 355 306 7,300 5 3,691 2006 4 CI 2 "Profitable Growth 15.2% 2 1,000 VISION LIG LIG Leading Company 482006331

More information

Admin Guide for dummy

Admin Guide for dummy Admin Guide for dummy WebLogic Server 8.1 sp2 for Windows Contents 1. Installation 2. Domain & Server Configuration Configuration Wizard Administrative Server Configuration Managed Server Configuration

More information

6주차.key

6주차.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

untitled

untitled Memory leak Resource 力 金 3-tier 見 Out of Memory( 不 ) Memory leak( 漏 ) 狀 Application Server Crash 理 Server 狀 Crash 類 JVM 說 例 行說 說 Memory leak Resource Out of Memory Memory leak Out of Memory 不論 Java heap

More information

기술교육 SSL 설정및변환방법

기술교육 SSL 설정및변환방법 SSL 설정및변환방법 2014. 03. 10 목차 WebtoB에서의 SSL 설정방법... 3 1. WebtoB 에서의 SSL 인증서발급절차... 3 1.1 openssl사용... 3 1.1.1 newreq.pem 파일설명... 3 1.1.2 인증기관에 CSR파일전송... 4 1.1.3 p7b파일변환... 4 1.2 WebtoB의환경설정... 5 1.2.1 http.m

More information

vm-웨어-앞부속

vm-웨어-앞부속 VMware vsphere 4 This document was created using the official VMware icon and diagram library. Copyright 2009 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright

More information

ETL_project_best_practice1.ppt

ETL_project_best_practice1.ppt ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication

More information

Getting Started Guide

Getting Started Guide 1 5 2 8 3 12 4 13 Pending 5 21. Canon LASER SHOT LBP3000... (PDF) CD-ROM. CD-ROM 28 "CD-ROM ". ( ) CD-ROM : Manual_1.pdf. CD-ROM : Manual_2.pdf,,. PDF CD-ROM. (28 "CD- ROM " ) CD-ROM (Manual_1.pdf, etc.)

More information

.

. Java EE Application Server JEUS 7 제품소개서 2013.03 2013 TmaxSoft Co., Ltd. All Rights Reserved. Ⅰ Ⅱ Ⅲ Ⅳ JEUS 개요 JEUS 7 Key Features 비용및서비스 Why TmaxSoft? Ⅰ JEUS 개요 지금까지의 JEUS 앞으로의 JEUS 지금까지의 JEUS JEUS 는 IT

More information

Portal_9iAS.ppt [읽기 전용]

Portal_9iAS.ppt [읽기 전용] Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Oracle9i Application Server e-business Portal Client Database Server e-business Portals B2C, B2B, B2E, WebsiteX B2Me GUI ID B2C

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

Microsoft Word - s.doc

Microsoft Word - s.doc 오라클 백서 2010년 9월 WebLogic Suite를 위해 최적화된 오라클 솔루션 비즈니스 백서 개요...1 들어가는 글...2 통합 웹 서비스 솔루션을 통해 비즈니스 혁신 추구...3 단순화...4 기민한 환경 구축...5 탁월한 성능 경험...6 판도를 바꾸고 있는 플래시 기술...6 오라클 시스템은 세계 최고의 성능 제공...6 절감 효과 극대화...8

More information

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770> i ii iii iv v vi 1 2 3 4 가상대학 시스템의 국내외 현황 조사 가상대학 플랫폼 개발 이상적인 가상대학시스템의 미래상 제안 5 웹-기반 가상대학 시스템 전통적인 교수 방법 시간/공간 제약을 극복한 학습동기 부여 교수의 일방적인 내용전달 교수와 학생간의 상호작용 동료 학생들 간의 상호작용 가상대학 운영 공지사항,강의록 자료실, 메모 질의응답,

More information

Business Agility () Dynamic ebusiness, RTE (Real-Time Enterprise) IT Web Services c c WE-SDS (Web Services Enabled SDS) SDS SDS Service-riented Architecture Web Services ( ) ( ) ( ) / c IT / Service- Service-

More information

Service-Oriented Architecture Copyright Tmax Soft 2005

Service-Oriented Architecture Copyright Tmax Soft 2005 Service-Oriented Architecture Copyright Tmax Soft 2005 Service-Oriented Architecture Copyright Tmax Soft 2005 Monolithic Architecture Reusable Services New Service Service Consumer Wrapped Service Composite

More information

슬라이드 1

슬라이드 1 - 1 - 전자정부모바일표준프레임워크실습 LAB 개발환경 실습목차 LAB 1-1 모바일프로젝트생성실습 LAB 1-2 모바일사이트템플릿프로젝트생성실습 LAB 1-3 모바일공통컴포넌트생성및조립도구실습 - 2 - LAB 1-1 모바일프로젝트생성실습 (1/2) Step 1-1-01. 구현도구에서 egovframe>start>new Mobile Project 메뉴를선택한다.

More information

슬라이드 1

슬라이드 1 전자정부개발프레임워크 1 일차실습 LAB 개발환경 - 1 - 실습목차 LAB 1-1 프로젝트생성실습 LAB 1-2 Code Generation 실습 LAB 1-3 DBIO 실습 ( 별첨 ) LAB 1-4 공통컴포넌트생성및조립도구실습 LAB 1-5 템플릿프로젝트생성실습 - 2 - LAB 1-1 프로젝트생성실습 (1/2) Step 1-1-01. 구현도구에서 egovframe>start>new

More information

목차 데모 홖경 및 개요... 3 테스트 서버 설정... 4 DC (Domain Controller) 서버 설정... 4 RDSH (Remote Desktop Session Host) 서버 설정... 9 W7CLIENT (Windows 7 Client) 클라이얶트 설정

목차 데모 홖경 및 개요... 3 테스트 서버 설정... 4 DC (Domain Controller) 서버 설정... 4 RDSH (Remote Desktop Session Host) 서버 설정... 9 W7CLIENT (Windows 7 Client) 클라이얶트 설정 W2K8 R2 RemoteApp 및 Web Access 설치 및 구성 Step-By-Step 가이드 Microsoft Korea 이 동 철 부장 2009. 10 페이지 1 / 60 목차 데모 홖경 및 개요... 3 테스트 서버 설정... 4 DC (Domain Controller) 서버 설정... 4 RDSH (Remote Desktop Session Host)

More information

1217 WebTrafMon II

1217 WebTrafMon II (1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network

More information

.

. SysMaster for WAS 2015. 09. Ⅰ Ⅱ Ⅲ Ⅳ WAS Agent 등록 WAS Agent 설정 WAS 기동과연동 Ⅰ 설치순서 SysMaster 5 다운로드 Agent 설치파일다운로드 1. Ⅳ 장에서설명한 Master 설치파일을동일하게다운로드진행 (Agent 설치파일도 Master 설치파일에포함 ) 3/36 설치화면 1. 관리자모드로실행필요 2.

More information

H_AR_.....29P05..5..17..

H_AR_.....29P05..5..17.. GROWING IN THE TIME OF UNCERTAINTY HYNIX 2005 ANNUAL REPORT CONTENTS 03 GROWING HYNIX 15 GROWTH PLATFORMS 32 REPORT OF FINANCIALS HYNIX 2005 ANNUAL REPORT 3 GROWING HYNIX HOW WILL YOU GROW IN AN UNCERTAIN

More information

비디오 / 그래픽 아답터 네트워크 만약에 ArcGolbe를 사용하는 경우, 추가적인 디스크 공간 필요. ArcGlobe는 캐시파일을 생성하여 사용 24 비트 그래픽 가속기 Oepn GL 2.0 이상을 지원하는 비디오카드 최소 64 MB 이고 256 MB 이상을 메모리

비디오 / 그래픽 아답터 네트워크 만약에 ArcGolbe를 사용하는 경우, 추가적인 디스크 공간 필요. ArcGlobe는 캐시파일을 생성하여 사용 24 비트 그래픽 가속기 Oepn GL 2.0 이상을 지원하는 비디오카드 최소 64 MB 이고 256 MB 이상을 메모리 ArcGIS for Desktop 10.4 Single Use 설치가이드 Software: ArcGIS for Desktop 10.4 Platforms: Windows 10, 8.1, 7, Server 2012, Server 2008 ArcGIS for Desktop 10.4 시스템 요구사항 1. 지원 플랫폼 운영체제 최소 OS 버전 최대 OS 버전 Windows

More information

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

More information

: Symantec Backup Exec System Recovery 8:............................................................................. 3..............................

: Symantec Backup Exec System Recovery 8:............................................................................. 3.............................. W H I T : E PA P E R : C U S TO M I Z E Confidence in a connected world. Symantec Backup Exec System Recovery 8: : Symantec Backup Exec System Recovery 8:.............................................................................

More information

리눅스설치가이드 3. 3Rabbitz Book 을리눅스에서설치하기위한절차는다음과같습니다. 설치에대한예시는우분투서버 기준으로진행됩니다. 1. Java Development Kit (JDK) 또는 Java Runtime Environment (JRE) 를설치합니다. 2.

리눅스설치가이드 3. 3Rabbitz Book 을리눅스에서설치하기위한절차는다음과같습니다. 설치에대한예시는우분투서버 기준으로진행됩니다. 1. Java Development Kit (JDK) 또는 Java Runtime Environment (JRE) 를설치합니다. 2. 3. 3Rabbitz Book 을리눅스에서설치하기위한절차는다음과같습니다. 설치에대한예시는우분투서버 기준으로진행됩니다. 1. Java Development Kit (JDK) 또는 Java Runtime Environment (JRE) 를설치합니다. 2. 3Rabbitz Book 애플리케이션파일다운로드하여압축파일을풀고복사합니다. 3. 3Rabbitz Book 실행합니다.

More information

Citrix Workload Balancing 2.1 설치 가이드

Citrix Workload Balancing 2.1 설치 가이드 Citrix Workload Balancing 2.1 설치 가이드 2011-7 펴냄 버전 1.0 Citrix Workload Balancing 2.1 설치 가이드 Copyright 2011 Citrix 판권 소유. 버전: Workload Balancing 2.1 Citrix, Inc. 851 West Cypress Creek Road Fort Lauderdale,

More information

TTA Journal No.157_서체변경.indd

TTA Journal No.157_서체변경.indd 표준 시험인증 기술 동향 FIDO(Fast IDentity Online) 생체 인증 기술 표준화 동향 이동기 TTA 모바일응용서비스 프로젝트그룹(PG910) 의장 SK텔레콤 NIC 담당 매니저 76 l 2015 01/02 PASSWORDLESS EXPERIENCE (UAF standards) ONLINE AUTH REQUEST LOCAL DEVICE AUTH

More information

Java Enterprise User Solution JEUS 는웹환경에서애플리케이션을개발, 운용, 실행할수있는플랫폼역할을하면서, 필요한각종서비스들을제공해주는웹어플리케이션서버 (Web Application Server) 입니다. 세계 상용최초로국제표준인 J2EE 1.4

Java Enterprise User Solution JEUS 는웹환경에서애플리케이션을개발, 운용, 실행할수있는플랫폼역할을하면서, 필요한각종서비스들을제공해주는웹어플리케이션서버 (Web Application Server) 입니다. 세계 상용최초로국제표준인 J2EE 1.4 시장점유율 1 위 WAS 클라우드환경과대용량트랜잭션을쉽고빠르게구현하는세계최초 Java EE 6,7 국제표준인증을획득한웹어플리케이션서버 MIDDLEWARE JEUS WebtoB Tmax InfiniCache Java Enterprise User Solution JEUS 는웹환경에서애플리케이션을개발, 운용, 실행할수있는플랫폼역할을하면서, 필요한각종서비스들을제공해주는웹어플리케이션서버

More information

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS ( PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

Microsoft Word - release note-VRRP_Korean.doc

Microsoft Word - release note-VRRP_Korean.doc VRRP (Virtual Router Redundancy Protocol) 기능추가 Category S/W Release Version Date General 7.01 22 Dec. 2003 Function Description VRRP 는여러대의라우터를그룹으로묶어하나의가상 IP 어드레스를부여해마스터로지정된라우터장애시 VRRP 그룹내의백업라우터가마스터로자동전환되는프로토콜입니다.

More information

Analyst Briefing

Analyst Briefing . Improve your Outlook on Email and File Management iseminar.. 1544(or 6677)-3355 800x600. iseminar Chat... Improve your Outlook on Email and File Management :, 2003 1 29.. Collaboration Suite - Key Messages

More information

Install stm32cubemx and st-link utility

Install stm32cubemx and st-link utility STM32CubeMX and ST-LINK Utility for STM32 Development 본문서는 ST Microelectronics 의 ARM Cortex-M 시리즈 Microcontroller 개발을위해제공되는 STM32CubeMX 와 STM32 ST-LINK Utility 프로그램의설치과정을설명합니다. 본문서는 Microsoft Windows 7

More information

PRO1_04E [읽기 전용]

PRO1_04E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_04E1 Information and S7-300 2 S7-400 3 EPROM / 4 5 6 HW Config 7 8 9 CPU 10 CPU : 11 CPU : 12 CPU : 13 CPU : / 14 CPU : 15 CPU : / 16 HW 17 HW PG 18 SIMATIC

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Spider For MySQL 실전사용기 피망플러스유닛최윤묵 Spider For MySQL Data Sharding By Spider Storage Engine http://spiderformysql.com/ 성능 8 만 / 분 X 4 대 32 만 / 분 많은 DB 중에왜 spider 를? Source: 클라우드컴퓨팅구 선택의기로 Consistency RDBMS

More information

SAMSUNG SDS Cloud Middleware JBoss EAP/WS WildFly Apache Tomcat JEUS WebLogic

SAMSUNG SDS Cloud Middleware JBoss EAP/WS WildFly Apache Tomcat JEUS WebLogic SAMSUNG SDS Cloud Middleware JBoss EAP/WS WildFly Apache Tomcat JEUS WebLogic Cloud Middleware JBoss EAP/WS 오픈소스기반엔터프라이즈급 Java 웹애플리케이션서버 엔터프라이즈급성능과기능을제공하는오픈소스기반 Java EE 웹애플리케이션서버로웹서버 JBoss WS 와함께제공됩니다.

More information

Spotlight on Oracle V10.x 트라이얼프로그램설치가이드 DELL SOFTWARE KOREA

Spotlight on Oracle V10.x 트라이얼프로그램설치가이드 DELL SOFTWARE KOREA Spotlight on Oracle V10.x DELL SOFTWARE KOREA 2016-11-15 Spotlight on Oracle 목차 1. 시스템요구사항... 2 1.1 지원하는데이터베이스...2 1.2 사용자설치홖경...2 2. 프로그램설치... 3 2.1 설치프로그램실행...3 2.2 라이선스사용관련내용확인및사용동의...3 2.3 프로그램설치경로지정...4

More information

Windows 8에서 BioStar 1 설치하기

Windows 8에서 BioStar 1 설치하기 / 콘텐츠 테이블... PC에 BioStar 1 설치 방법... Microsoft SQL Server 2012 Express 설치하기... Running SQL 2012 Express Studio... DBSetup.exe 설정하기... BioStar 서버와 클라이언트 시작하기... 1 1 2 2 6 7 1/11 BioStar 1, Windows 8 BioStar

More information

Sun Java System Messaging Server 63 64

Sun Java System Messaging Server 63 64 Sun Java System Messaging Server 6.3 64 Sun Java TM System Communications Suite Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 820 2868 2007 7 Copyright 2007 Sun Microsystems,

More information

untitled

untitled 3 IBM WebSphere User Conference WAS (e-mail : cjh@kr.ibm.com ) SWG WebSphere FTSS 2005. 6. 28 날로복잡해져가는 J2EE 환경에대한체계적인관리운영시스템구축을위해 WebSphere Application Server 가제공하는각종툴에대한 Guideline 필요. Request Metrics

More information

vm-웨어-01장

vm-웨어-01장 Chapter 16 21 (Agenda). (Green),., 2010. IT IT. IT 2007 3.1% 2030 11.1%, IT 2007 1.1.% 2030 4.7%, 2020 4 IT. 1 IT, IT. (Virtualization),. 2009 /IT 2010 10 2. 6 2008. 1970 MIT IBM (Mainframe), x86 1. (http

More information

J2EE Concepts

J2EE Concepts ! Introduction to J2EE (1) - J2EE Servlet/JSP/JDBC iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

JEUS 소개

JEUS 소개 JEUS 소개 JEUS v7.0 Fix#1 Copyright 2013 TmaxSoft Co., Ltd. All Rights Reserved. Copyright Notice Copyright 2013 TmaxSoft Co., Ltd. All Rights Reserved. 대한민국경기도성남시분당구서현동 272-6 우 ) 463-824 Restricted Rights

More information

consulting

consulting CONSULTING 전략 컨설팅 클라우드 마이그레이션 애플리케이션 마이그레이션 데이터 마이그레이션 HELPING YOU ADOPT CLOUD. 클라우드로 가기로 결정했다면 누구와 함께 갈지를 선택해야 합니다. 처음부터 끝까지 믿을만한 파트너를 찾는다면 베스핀글로벌이 정답입니다. 전략 컨설팅 다양한 클라우드 공급자가 존재하고, 클라우드 공급자마다 다른 장단점을

More information