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

Size: px
Start display at page:

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

Transcription

1 JEUS Thread State Notify 설정

2 목차 1. thread-state-notify 설정 시나리오 #1. max-thread-active-time : 10초 시나리오 #2. max-thread-active-time : 10초, thread-interrupt-execution : true 시나리오 #3. max-thread-active-time : 10초, restart-threshold-ratio : JEUS 설정 JEUS 5.x 설정 JEUS 6.x 설정 테스트 테스트환경 테스트 Thread block 테스트 Blocked Thread 삭제 일반 JSP Blocked Thread 삭제 Socket 통신중인 jsp 수행 Container restart 테스트 JEUS 5.x

3 Thread State Notify 설정가이드 1. thread-state-notify 설정 thread-state-notify 설정은 Thread 의최대수행시간을정함으로써 Thread Hang 으로인한서비스의중단을방지하 는것을목적으로합니다. Thread 의수행시간을주기적으로체크하여최대수행시간을넘기는 Thread 에한하여강제로 Block 시키고삭제할 수있으며 Blocked Thread 의수가일정비율을넘기면 Container restart 를수행할수있습니다. 주의할점은 Thread 의상태를모니터링하는주기는 WEBMain.xml 의 monitoring 태그에서정한다는것입니다. monitoring 태그를설정하지않고 thread-state-notify 설정만했을경우 Thread 의수행시간을 manager 가체크하지 않기때문에원하는결과를얻을수없습니다. 해당설정의자세한설명은아래에서시나리오 #1, #2, #3 으로나누어설명하겠습니다. 1.1 시나리오 #1. max-thread-active-time : 10 초 Thread 의최대수행시간 (max-thread-active-time) 을 10 초로설정하고 JSP 를수행하였을경우를그림으로표시했습니 다. 그림에서보면 JSP 가수행후 Running 상태가되었다가 10 초가경과하면서 Blocked 상태가되는것을확인할 수있습니다. 이때 Blocked 된 Thread 를대신할신규 Thread 가생성되는것도확인할수있습니다. 이러한수행이계속되면서 10 초이상수행되는 Thread 들은 Blocked 상태가되고신규 Thread 를생성함으로써가용 할수있는 Thread 의개수가일정하게유지됩니다. 3

4 1.2 시나리오 #2. max-thread-active-time : 10 초, thread-interrupt-execution : true Thread 의최대수행시간 (max-thread-active-time) 을 10 초, thread-interrupt-execution 을 true 로설정하고 JSP 를수행하 였을경우를표시했습니다. 그림에서보면 JSP 가수행후 Running 상태가되었다가 10 초가경과하면서 Blocked 상태가되는것을확인할수있 습니다. 이때일반적인 JSP의경우와소켓통신중인 JSP 두가지경우로나뉘는데일반적인 JSP를수행하는경우는해당 Thread 가 Blocked 되고 uri가 unknown 으로변한후바로 Thread 가삭제됩니다. 하지만소켓통신중인 JSP를수행하는경우는해당 Thread 가 Blocked 되지만 uri는수행되는 AP가계속표시되며 Thread 의삭제가이루어지지않습니다. 이러한차이를보이는이유는 thread-interrupt-execution 설정이 true 인경우 Blocked 상태가된 Thread 에 manager 가 interrupt 신호를보내 Thread 의삭제를시도하게되는데소켓통신의경우 interrupt 신호로인한 Exception 이쉽 게발생하지않아삭제를수행하지못하기때문입니다. < 주의사항 > 소켓통신중 JSP의경우 Blocked 상태에서삭제가이루어지지않기때문에 Thread 를계속물고있습니다. 이때 WebtoB 와의연결도계속물려있기때문에 WebtoB 와 JEUS 사이의 Thread 개수가같을경우신규생성된 Thread 는 reconnecting 상태가되므로 WebtoB 의 Thread 개수를더많이주어야합니다. 4

5 1.3 시나리오 #3. max-thread-active-time : 10 초, restart-threshold-ratio : 0.5 Thread 의최대수행시간 (max-thread-active-time) 을 10 초, restart-threshold-ratio 을 0.5 로설정하고 JSP 를수행하였을 경우를표시했습니다. 그림에서보면 2 개의 JSP 가수행후 Running 상태가되었다가 10 초가경과하면서 Container 가 restart 하는것을확 인할수있습니다. restart-threshold-ratio 값을전체 Thread 를 50% 로정하였기때문에 4 개의 Thread 중 2 개의 Thread 가수행하다 Blocked 로빠지는즉시 Container Restart 가이루어지는것입니다. 이비율은 WEBMain.xml 에설정한 Thread 의 max값을기준으로하기때문에 Blocked 상태의 Thread 로인해생기는신규 Thread 와는별개로산정됩니다. 즉 min값이 4개이고 max가 10개일경우 restart 비율을 50% 로설정하면기준값이 Thread 5개가되며중간에신규 Thread 가생기더라도 Blocked 된 Thread 가 5개가되는시점에 Container restart 가이루어집니다 5

6 2. JEUS 설정 2.1 JEUS 5.x 설정 thread-state-notify 서브태그 태그명 max-thread-active-time (ms) notify-threshold (int) restart-threshold (int) notify-subject restart-subject 설명 Thread 가수행될수있는최대시간값 Worker thread 가클라이언트요청을서비스할때부터측정되며초과할경우해당 Thread 를강제로 Block 시킴 Block 된 Thread 의최대개수를설정할수있으며이를초과하면 smtp-handler 에설정된 주소로해당내용을통보 Block 된 Thread 의최대개수를설정할수있으며이를초과하면해당 Container Restart 수행 notify-threadhold 조건초과에대한통보시사용되는 Subject Container Restart 수행에대한 통보시사용되는 Subject monitoring 서브태그 태그명 check-thread-pool (default : ms) 설명 Thread Pool 안에있는 Worker Thread 의상태를점검하기위한시간간격을설정 설정된시간간격을주기로 Worker Thread 의상태를점검 2.2 JEUS 6.x 설정 thread-state-notify 서브태그 태그명 max-thread-active-time (ms) notify-threshold-ratio ( 소수점이하로설정 : 0.5) notify-subject restart-subject thread-interrupt-execution restart-engine-execution 설명 Thread 가수행될수있는최대시간값. Worker thread 가클라이언트요청을서비스할때부터측정되며초과할경우해당 Thread 를강제로 Block 시킴 Block 된 Thread 의최대비율를설정할수있으며이를초과하면 smtp-handler 에설정된 주소로해당내용을통보 Therad Pool 의 Max Thread 개수에서설정된비율로값을기준값을산정 notify-threadhold 조건초과에대한통보시사용되는 Subject Container Restart 수행에대한 통보시사용되는 Subject 최대수행시간초과로 Blocked 상태로변한 Thread 에 interrupt 신호를보낼것인지결정 interrupt 신호를받은 Thread 는 Exception 후삭제됨최대수행시간초과로 Blocked 상태로변한 Thread의개수가 restart-threshod-ratio 를넘어선경우해당 engine 의 restart 유무를결정 6

7 monitoring 서브태그 태그명 check-thread-pool (default : ms) 설명 Thread Pool 안에있는 Worker Thread 의상태를점검하기위한시간간격을설정 설정된시간간격을주기로 Worker Thread 의상태를점검 3. 테스트 3.1 테스트환경 테스트버전 : JEUS Test 소스파일 : sleep.jsp, urlconnection.jsp sleep.jsp : Thread Hang 상태를만들기위하여 Thread.sleep 를사용함. <% Thread.sleep( ); out.println(" =================="); %> urlconnection.jsp : Socket 통신중에 Hang 이발생한 Thread 을만들기위하여사용함. sleep.jsp 를 socket 통신으로 read 하므로원격지에서응답이없어 Thread Hang 이발생 <%@ page language = "java" contenttype="text/html;charset=euc-kr" %> <%@ page import="java.net.*" %> <%@ page import="java.io.*" %> <% try{ String address = " URL url = new URL(address); URLConnection conn = (URLConnection) url.openconnection(); InputStream is = conn.getinputstream(); InputStreamReader isr = new InputStreamReader(is); BufferedReader br = new BufferedReader(isr); String line = null; while((line=br.readline())!=null){ out.println(line); %><br><br><% } out.println("######## Url Connection end ########"); }catch(ioexception e){ out.println(e.tostring()); } %> 7

8 3.2 테스트 Thread block 테스트 check-thread-pool 5 초, max-thread-active-time 10 초설정후 sleep.jsp 테스트 sleep.jsp 가수행된후 10 초가지나면서 blocked 상태로변하고신규 Thread 가생성되는것을 Thread 상태에서확 인할수있습니다. JEUS Server log 에서도 Thread 가 blocked 로변하고신규 Thread 가생성되는과정을확인할수 있습니다. WEBMain.xml <?xml version="1.0"?> <web-container xmlns=" version="6.0"> <monitoring> <check-thread-pool>5000</check-thread-pool> <!--Thread monitoring 시간을 5 초로설정 --> </monitoring> <webtob-listener> <max-thread-active-time>10000</max-thread-active-time> <!-- 최대수행시간을 10 초로설정 --> Thread Pool 상태 (min:4, max:4) 51 webtob1-hth0(localhost:9900)-w00 waiting webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 waiting webtob1-hth0(localhost:9900)-w03 active 2749 /test1/sleep.jsp sleep.jsp 실행 10초경과 51 webtob1-hth0(localhost:9900)-w00 waiting webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 waiting webtob1-hth0(localhost:9900)-w03 blocked /test1/sleep.jsp Blocked Thread 57 webtob1-hth0(localhost:9900)-w4 waiting 2730 신규 Thread 8

9 JEUS Server log deleting long active thread (webtob1-hth0(localhost:9900)-w03), active time = 13275, uri = /test1/sleep.jsp, alive = true blocked thread (webtob1-hth0(localhost:9900)-w03) - uri : /test1/sleep.jsp, alive = true creating new thread (webtob1-hth0(localhost:9900)-w Blocked Thread 삭제 일반 JSP 번설정에서 thread-interrupt-execution 추가후 sleep.jsp 테스트 sleep.jsp 가수행된후 10 초가지나면서 blocked 상태로변하고신규 Thread 가생성되는것을 Thread 상태에서확 인할수있습니다. 이때 blocked 상태로변한 Thread 는 interrupt 신호를받고 Exception 을발생시키며삭제되는것 을 JEUS Server log 에서확인할수있습니다. WEBMain.xml <?xml version="1.0"?> <web-container xmlns=" version="6.0"> <monitoring> <check-thread-pool>5000</check-thread-pool> <!--Thread monitoring 시간을 5 초로설정 --> </monitoring> <webtob-listener> <max-thread-active-time>10000</max-thread-active-time> <!-- 최대수행시간을 10 초로설정 --> <thread-interrupt-execution>true</thread-interrupt-execution> <!--Blocked Thread 에 interrupt 신호를보내도록설정 --> 9

10 Thread Pool 상태 (min:4, max:4) 52 webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 waiting webtob1-hth0(localhost:9900)-w03 waiting webtob1-hth0(localhost:9900)-w4 active 637 /test1/sleep.jsp sleep.jsp 실행 10초경과 52 webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 waiting webtob1-hth0(localhost:9900)-w03 waiting webtob1-hth0(localhost:9900)-w4 blocked unknown Blocked Thread 59 webtob1-hth0(localhost:9900)-w5 waiting 579 신규 Thread Interrupt 신호를보냄 52 webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 waiting webtob1-hth0(localhost:9900)-w03 waiting webtob1-hth0(localhost:9900)-w5 waiting 5751 Blocked Thread 사라짐 JEUS Server log deleting long active thread (webtob1-hth0(localhost:9900)-w4), active time = 10100, uri = /test1/sleep.jsp, alive = true, <<stacktrace(webtob1-hth0(localhost:9900)-w4)>> java.lang.thread.sleep(native Method) jeus_jspwork._600_sleep_5fjsp._jspservice(_600_sleep_5fjsp.java:50) jeus.servlet.jsp2.runtime.httpjspbase.service(httpjspbase.java:106) javax.servlet.http.httpservlet.service(httpservlet.java:818) blocked thread (webtob1-hth0(localhost:9900)-w4) - uri : /test1/sleep.jsp, alive = true Failed to execute jsp : /sleep.jsp << Exception >> javax.servlet.servletexception: java.lang.interruptedexception: sleep interrupted at jeus.servlet.jsp2.runtime.pagecontextimpl.dohandlepageexception at jeus.servlet.jsp2.runtime.pagecontextimpl.handlepageexception at jeus_jspwork._600_sleep_5fjsp._jspservice at jeus.servlet.jsp2.runtime.httpjspbase.service at javax.servlet.http.httpservlet.service at jeus.servlet.jsp.jspservletwrapper.executeservlet at jeus.servlet.engine.servletwrapper.execute at jeus.servlet.jsp.jspservletwrapper.execute at jeus.servlet.engine.webtobrequestprocessor.run Caused by: java.lang.interruptedexception: sleep interrupted at java.lang.thread.sleep at jeus_jspwork._600_sleep_5fjsp._jspservice... 6 more 10

11 3.2.3 Blocked Thread 삭제 Socket 통신중인 jsp 수행 번설정에서 thread-interrupt-execution 추가후 urlconnection.jsp 테스트 urlconnection.jsp 가수행된후 10 초가지나면서 blocked 상태로변하고신규 Thread 가생성되는것을 Thread 상태 에서확인할수있습니다. 이때 blocked 상태로변한 Thread 는 2) 번의 sleep.jsp 실행시와같이 interrupt 신호를받 지만 interrupt Exception 을발생시키지못하고계속 Thread Pool 에남아있는것을확인할수있습니다. 해당 Thread 는 300 초가지난후에아래 log 와함께삭제되었습니다. worker(webtob1-hth0(localhost:9900)-w02:unix(hth-0:9900:44)) : terminated WEBMain.xml <?xml version="1.0"?> <web-container xmlns=" version="6.0"> <monitoring> <check-thread-pool>5000</check-thread-pool> <!--Thread monitoring 시간을 5 초로설정 --> </monitoring> <webtob-listener> <max-thread-active-time>10000</max-thread-active-time> <!-- 최대수행시간을 10 초로설정 --> <thread-interrupt-execution>true</thread-interrupt-execution> <!--Blocked Thread 에 interrupt 신호를보내도록설정 --> Thread Pool 상태 (min:4, max:4) 51 webtob1-hth0(localhost:9900)-w00 active 921 /test1/urlconnection.jsp urlconnection.jsp 실행 52 webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 waiting webtob1-hth0(localhost:9900)-w03 waiting 초경과 51 webtob1-hth0(localhost:9900)-w00 blocked /test1/urlconnection.jsp Blocked Thread 52 webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 waiting webtob1-hth0(localhost:9900)-w03 waiting webtob1-hth0(localhost:9900)-w4 waiting 124 신규 Thread 11

12 JEUS Server log webtob1-hth0(localhost:9900):3:1 deleting long active thread (webtob1-hth0(localhost:9900)-w00), active time = 11826, uri = /test1/urlconnection.jsp, alive = true, <<stacktrace(webtob1-hth0(localhost:9900)-w00)>> java.net.socketinputstream.socketread0(native Method) java.net.socketinputstream.read(socketinputstream.java:129) java.io.bufferedinputstream.fill(bufferedinputstream.java:218) java.io.bufferedinputstream.read1(bufferedinputstream.java:256) java.io.bufferedinputstream.read(bufferedinputstream.java:313) sun.net. sun.net. sun.net. webtob1-hth0(localhost:9900):3:1 blocked thread (webtob1-hth0(localhost:9900)-w00) - uri : /test1/urlconnection.jsp, alive = true Container restart 테스트 번설정에서 restart-engine-execution 과 restart-threshold-ratio 를 0.5(50%) 로설정하고 urlconnection.jsp 테스트 active 중인 w02 Thread 가 10 초이상수행되면서 Blocked 됩니다. 이로인해 Blocked 된 Thread 가전체의 50%( 총 4 개중 2 개 w00, w02) 넘기면서 restart 하는조건에만족하여해당 Container 가 Thread dump 를남기고 restart 하게됩니다. WEBMain.xml <?xml version="1.0"?> <web-container xmlns=" version="6.0"> <monitoring> <check-thread-pool>5000</check-thread-pool> <!-- Thread monitoring 시간을 5 초로설정 --> </monitoring> <webtob-listener> <max-thread-active-time>10000</max-thread-active-time> <!-- 최대수행시간을 10 초로설정 --> <restart-threshold-ratio>0.5</restart-threshold-ratio> <!--Blocked Thread 의최대비율을 50% 로설정 ( 기준값 : Thread max 값 )--> <restart-engine-execution>true</ restart-engine-execution> <!--Blocked Thread 가최대비율을넘으면 Conatiner restart--> 12

13 Thread Pool 상태 (min:4, max:4) 51 webtob1-hth0(localhost:9900)-w00 blocked /test1/urlconnection.jsp 52 webtob1-hth0(localhost:9900)-w01 waiting webtob1-hth0(localhost:9900)-w02 active 517 /test1/urlconnection.jsp 54 webtob1-hth0(localhost:9900)-w03 waiting webtob1-hth0(localhost:9900)-w04 waiting 초경과 webtob1-hth0(localhost:9900)-w02 가 Blocked Thread 가되면서 Container Restart JEUS Server log (tmaxdev_servlet_engine2) (webtob1-hth0(localhost:9900)) thread state reporting [active, :54:44, ms][/test1/urlconnection.jsp] [active, :55:10, ms][/test1/urlconnection.jsp]... Now engine restarting... Full thread dump Java HotSpot(TM) Server VM (1.5.0_20-b02 mixed mode)... engine tmaxdev_servlet_engine2 of the container tmaxdev_container2 is trying to restart trying to shutdown container tmaxdev_container JEUS 5.x JEUS 5.x 는 6.x 와같은방식으로 Thread state notify 가수행되지만다른부분이몇가지있습니다. 최대수행시간 (max-thread-active-time) 을지나는 Thread 에대해서는 Blocked 상태로만들지만 6.x 와달리 interrupt 신호를줄것인지유무를설정하지않고바로수행합니다. Blocked Thread 의최대값은 6.x 와달리개수로지정하고 Container restart 또한유무를설정하지않고최대값을넘 어서면바로수행됩니다. 13

14 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-JSCF-D

개발및운영 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

[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 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

목차 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

튜닝및모니터링 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

윈백및업그레이드 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

목차 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

목차 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

개요오라클과티베로에서 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

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

목차 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

목차 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

튜닝및모니터링 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

튜닝및모니터링 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

목차 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

개발및운영 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

목차 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

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

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

ÃÖÁ¾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

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

설치및홖경설정 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

목차 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

untitled

untitled TSUBAKI 1 2 3 4 5 6 Headquarters Nakanoshima Mitsui Building 3-3-3 Nakanoshima, Kita-ku Osaka, 530-0005, Japan Phone : +81-6-6441-0011 URL : http://tsubakimoto.com Chain & Power Transmission Sales 1-3

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

기술교육 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

2012-민간네트워크-05_중국

2012-민간네트워크-05_중국 2012- fi '-05_` 2012.3.19 1:0 PM ` 161 600DPI 95LPI 161 2012- fi '-05_` 2012.3.19 1:0 PM ` 162 600DPI 95LPI 2012 Global Business Network of Korea 162 http://www.exportcenter.go.kr 2012- fi '-05_` 2012.3.19

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

기술교육 Architecture & Monitoring

기술교육 Architecture & Monitoring Architecture & Monitoring 2014. 12. 05 목차 Architecture... 3 1. 개요... 3 1.1 JEUS7 Spec... 3 1.2 도메인아키텍처... 3 2. 구성요소... 4 2.1 Domain Administration Server(DAS)... 5 2.2 Managed Server(MS)... 5 2.3 Cluster...

More information

목차 1. 환경변수 OS별환경변수설정 ESQL 시작 ESQL 프로그램생성젃차 오라클 Pro*C 젂환 Precompiler 변경 확장자 *.pc를 *.tbc로변경

목차 1. 환경변수 OS별환경변수설정 ESQL 시작 ESQL 프로그램생성젃차 오라클 Pro*C 젂환 Precompiler 변경 확장자 *.pc를 *.tbc로변경 개발및운영 Tibero ProC 전환및 Tmax 설정 2014. 05. 16. 목차 1. 환경변수... 3 1.1. OS별환경변수설정... 3 2. ESQL 시작... 4 2.1. ESQL 프로그램생성젃차... 4 3. 오라클 Pro*C 젂환... 5 3.1 Precompiler 변경... 5 3.2 확장자 *.pc를 *.tbc로변경... 5 3.3 티베로젂환시주의사항...

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Page 1 Page 2 Page 3 Page 4 Page 5 Page 6 Page 7 Internet Page 8 Page 9 Page 10 Page 11 Page 12 1 / ( ) ( ) / ( ) 2 3 4 / ( ) / ( ) ( ) ( ) 5 / / / / / Page 13 Page 14 Page 15 Page 16 Page 17 Page 18 Page

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

untitled

untitled 2007 8 8 NCsoft CORPORATION OK-san Bldg 157-33, Samsung-dong, Kangnam-gu, Seoul 135-090, KOREA Tel: +82-2-2186-3300 Fax : +82-2-2186-3550 Copyright NCsoft Corporation. All Rights Reserved WWW.NCSOFT.COM

More information

국문-현대-내지ar

국문-현대-내지ar CONTENTS 03 04 06 08 10 12 16 18 20 21 105 106 108 03 04 "시장 경쟁이 더욱 치열해진 상황에서 이제는 규모를 위한 양적 성장이 아니라, 질적 성장 경쟁을 주도할 것입니다." 05 " 올바른 자산관리는 고객의 질문에 대한 현명한 해답에서 비롯됩니다. QnA의 전문적이고 차별화된 금융서비스는, 고객의 다양하고 복잡한

More information

Main Title

Main Title 2003 5140001 IMD WCY IMD 2003 (, 54 ), Competitiveness Valuation International, Inc. Korea Partner of IMD WCY jeong@cvikorea.net page 1 2003, Jin-Ho Jeong, CVI, Korea Partner of IMD +41-25-618-0251 Fax

More information

untitled

untitled 2007 5 8 NCsoft CORPORATION OK-san Bldg 157-33, Samsung-dong, Kangnam-gu, Seoul 135-090, KOREA Tel: +82-2-2186-3300 Fax : +82-2-2186-3550 Copyright NCsoft Corporation. All Rights Reserved WWW.NCSOFT.COM

More information

2003³â¿¬Â÷º¸°í¼�

2003³â¿¬Â÷º¸°í¼� Contents Design Technology with the Best Tire Performance and Design Technology Ranking the 9 th in the World Tire Industry 03 CEO s Message 04 05 06 Design Technology with the Best Tire Performance and

More information

141124 rv 브로슈어 국문

141124 rv 브로슈어 국문 SMART work MOBILE office Home Office 원격제어에 대한 가장 완벽한 해답, 스마트워크 및 모바일 오피스를 위한 최적의 솔루션 시간과 공간의 한계를 넘어서는 놀라운 세계, 차원 이 다른 원격제어 솔루션을 지금 경험해보십시오! RemoteView? 리모트뷰는 원거리의 내 PC 또는 관리할 서버에 프로그램 설치 후, 인터넷을 통해 언제

More information

Hardware Manual TSP100

Hardware Manual TSP100 Trademark acknowledgments TSP: Star Micronics., Ltd. Notice All rights reserved. Reproduction of any part of this manual in any form whatsoever, without STAR s express permission is forbidden. The contents

More information

IvoBase Injector

IvoBase Injector ENTER ESC ENTER ESC 1. Korean 2. RMR i 3. + P1 P2 P3 P... STOP i RMR START + P1 P2 P3 P... 4. STOP START i RMR + ENTER ESC P1 P2 P3 P... STOP START P2 P1 P3 P... STOP START 1. Korean 3. 주입 과정 수행 RMR i

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

자바-11장N'1-502

자바-11장N'1-502 C h a p t e r 11 java.net.,,., (TCP/IP) (UDP/IP).,. 1 ISO OSI 7 1977 (ISO, International Standards Organization) (OSI, Open Systems Interconnection). 6 1983 X.200. OSI 7 [ 11-1] 7. 1 (Physical Layer),

More information

Microsoft PowerPoint - 04-UDP Programming.ppt

Microsoft PowerPoint - 04-UDP Programming.ppt Chapter 4. UDP Dongwon Jeong djeong@kunsan.ac.kr http://ist.kunsan.ac.kr/ Dept. of Informatics & Statistics 목차 UDP 1 1 UDP 개념 자바 UDP 프로그램작성 클라이언트와서버모두 DatagramSocket 클래스로생성 상호간통신은 DatagramPacket 클래스를이용하여

More information

Hynix_K_pdf

Hynix_K_pdf 2007 Annual Report Hynix 2007 Annual Report 16_17 the for the year 2007, 2007, Will is strength. But it s also vision. Because... 3 Hynix 2007 Annual Report 16_3 2006 Highlights Financial Highlights (Three-year

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

Microsoft PowerPoint - Supplement-03-TCP Programming.ppt [호환 모드]

Microsoft PowerPoint - Supplement-03-TCP Programming.ppt [호환 모드] - Socket Programming in Java - 목차 소켓소개 자바에서의 TCP 프로그램작성방법 주요클래스와메소드 HTTP 프로토콜을이용한예제 에코프로그램 Q/A 에코프로그램 - EchoServer 에코프로그램 - EchoClient TCP Programming 1 소켓소개 IP, Port, and Socket 포트 (Port): 전송계층에서통신을수행하는응용프로그램을찾기위한주소

More information

Microsoft PowerPoint - 03-TCP Programming.ppt

Microsoft PowerPoint - 03-TCP Programming.ppt Chapter 3. - Socket in Java - 목차 소켓소개 자바에서의 프로그램작성방법 주요클래스와메소드 HTTP 프로토콜을이용한예제 에코프로그램 에코프로그램 - EchoServer 에코프로그램 - EchoClient Q/A 1 1 소켓소개 IP,, and Socket 포트 (): 전송계층에서통신을수행하는응용프로그램을찾기위한주소 소켓 (Socket):

More information

내용물 시작 3 구성품 4 MDA200 기본 사항 5 액세서리 6 헤드셋 연결 7 탁상 전화기: 연결 및 통화 8 탁상 전화기(표준) 8 탁상 전화기+ HL10 거치대와 전원 공급 장치(별도 구매) 10 탁상 전화기+ EHS 케이블 12 컴퓨터: 연결 및 통화 13 컴

내용물 시작 3 구성품 4 MDA200 기본 사항 5 액세서리 6 헤드셋 연결 7 탁상 전화기: 연결 및 통화 8 탁상 전화기(표준) 8 탁상 전화기+ HL10 거치대와 전원 공급 장치(별도 구매) 10 탁상 전화기+ EHS 케이블 12 컴퓨터: 연결 및 통화 13 컴 MDA200 오디오 스위처 사용 설명서 내용물 시작 3 구성품 4 MDA200 기본 사항 5 액세서리 6 헤드셋 연결 7 탁상 전화기: 연결 및 통화 8 탁상 전화기(표준) 8 탁상 전화기+ HL10 거치대와 전원 공급 장치(별도 구매) 10 탁상 전화기+ EHS 케이블 12 컴퓨터: 연결 및 통화 13 컴퓨터 연결 및 전화 걸기 13 MDA200 LED 표시등

More information

untitled

untitled 제14-36-936호 WEDNESDAY JOURNAL 수요저널은 모바일버전 뉴스와 동영상뉴스, PDF 서비스도 제공합니다. 앞서가는 뉴스! 홍콩 수요저널! 경건의 모양은 있으나 경건의 능력은 부인하니 이같은 자들에게서 돌아서라 - 딤후3:5 홍콩 중국을 알려주는 주간소식지- 홍콩수요저널 www.wednesdayjournal.net 2014년 9월 10일 Publisher

More information

Installation Area : Baseball Stadium Lighting Sajik Baseball Stadium Busan, Korea 시애틀 구단이 조명 시설을 이벤트 기능으로 활용하는 모습이 좋았고, 선수들의 반응도 괜찮았습니다. 우리도 이를 접목시킨다면

Installation Area : Baseball Stadium Lighting Sajik Baseball Stadium Busan, Korea 시애틀 구단이 조명 시설을 이벤트 기능으로 활용하는 모습이 좋았고, 선수들의 반응도 괜찮았습니다. 우리도 이를 접목시킨다면 LED FLOOD LIGHTING SPORTS LIGHTING CASE STUDY Sajik Baseball Stadium Busan Korea Installation Area : Baseball Stadium Lighting Sajik Baseball Stadium Busan, Korea 시애틀 구단이 조명 시설을 이벤트 기능으로 활용하는 모습이 좋았고,

More information

레이아웃 1

레이아웃 1 01 02 03 07 09 10 11 11 11 12 12 12 13 14 16 17 18 21 23 24 25 00 01 2008 2007 2006 1,071,408 936,077 885,132 474,776 407,595 446,349 596,632 528,482 438,783 1,314,403 1,213,090 1,117,767 190,149 161,296

More information

SKC_AR_±¹¹® 01pdf

SKC_AR_±¹¹® 01pdf SKC Annual Report 2006 The Next Growth Contents 02 04 06 08 10 12 14 22 24 26 28 40 41 42 44 49 96 98 15,000 12,000 13,263 14,090 12,118 1,200 1,000 962 1,170 10,000 8,000 8,167 9,000 6,000 3,000 800 600

More information

180427_SDI_Brochure_국문_최종2

180427_SDI_Brochure_국문_최종2 (HQ) TEL +82-31-210-8209 E-mail energy.storage@samsung.com Reichenbachstrasse 2, 85737 Ismaning, Germany TEL +49-89-9292-7799(19) E-mail sintaek.yim@samsung.com 3655 North 1st Street, San Jose, CA 95134,

More information

Copyrights and Trademarks Autodesk SketchBook Mobile (2.0.2) 2013 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc.,

Copyrights and Trademarks Autodesk SketchBook Mobile (2.0.2) 2013 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., Autodesk SketchBook Mobile Copyrights and Trademarks Autodesk SketchBook Mobile (2.0.2) 2013 Autodesk, Inc. All Rights Reserved. Except as otherwise permitted by Autodesk, Inc., this publication, or parts

More information

untitled

untitled 2007 2 7 NCsoft CORPORATION OK-san Bldg 157-33, Samsung-dong, Kangnam-gu, Seoul 135-090, KOREA Tel: +82-2-2186-3300 Fax : +82-2-2186-3550 Copyright NCsoft Corporation. All Rights Reserved WWW.NCSOFT.COM

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

about_by5

about_by5 WWW.BY5IVE.COM BYFIVE CO. DESIGN PARTNERS MAKE A DIFFERENCE BRAND EXPERIENCE CONSULTING & DESIGN PACKAGE / OFF-LINE EDITING CONSULTING & DESIGN USER EXPERIENCE (UI/GUI) / ON-LINE EDITING CONSULTING & DESIGN

More information

<4D6963726F736F667420506F776572506F696E74202D203230313020BDE1B5E5BEC6C0CC20C8B8BBE7BCD2B0B35F46696E616C2E707074205BC8A3C8AF20B8F0B5E55D>

<4D6963726F736F667420506F776572506F696E74202D203230313020BDE1B5E5BEC6C0CC20C8B8BBE7BCD2B0B35F46696E616C2E707074205BC8A3C8AF20B8F0B5E55D> Company Introduction COMPANY INFORMATION 써드아이 글로벌 선도 Enterprise 컨설팅 업체 써드아이는 (주)써드아이는 양산 자동차 컨설팅 서비스를 제공하는 아시아 최고의 디자인컨설팅 전문기업으로 디자인 컨설팅 사업, 디지털 콘텐츠 사업 IT 솔루션 사업 으로편성되어있으며, 특히 디자인 전문 컨설팅 사업부 에서는 국내뿐만 아니라

More information

사 업 보 고 서 (제 181 기) 사업연도 2012년 01월 01일 2012년 12월 31일 부터 까지 금융위원회 한국거래소 귀중 회 사 명 : (주) 신한은행 대 표 이 사 : 서진원 본 점 소 재 지 : 서울특별시 중구 세종대로 9길 20 (전 화) 02-756-

사 업 보 고 서 (제 181 기) 사업연도 2012년 01월 01일 2012년 12월 31일 부터 까지 금융위원회 한국거래소 귀중 회 사 명 : (주) 신한은행 대 표 이 사 : 서진원 본 점 소 재 지 : 서울특별시 중구 세종대로 9길 20 (전 화) 02-756- 목 사 업 보 고 서...1 대표이사 등의 확인...2 I. 회사의 개요...3 1. 회사의 개요...3 2. 회사의 연혁...9 3. 자본금 변동사항...14 4. 주식의 총수 등...14 5. 의결권 현황...15 6. 배당에 관한 사항 등...16 II. 사업의 내용...19 III. 재무에 관한 사항...62 IV. 감사인의 감사의견 등...121 V.

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

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

Installation Area : Baseball Stadium Lighting New York Yankee Stadium USA [MLB 공식 Auditor, 마이클 오웬 인터뷰 내용 중] 지난 2015년 6월에 측정되었던 HID 기존 조명에 비해 이번에 설치된 기

Installation Area : Baseball Stadium Lighting New York Yankee Stadium USA [MLB 공식 Auditor, 마이클 오웬 인터뷰 내용 중] 지난 2015년 6월에 측정되었던 HID 기존 조명에 비해 이번에 설치된 기 LED FLOOD LIGHTING SPORTS LIGHTING CASE STUDY Yankee Stadium New York USA Installation Area : Baseball Stadium Lighting New York Yankee Stadium USA [MLB 공식 Auditor, 마이클 오웬 인터뷰 내용 중] 지난 2015년 6월에 측정되었던

More information

180830_SDI_Brochure_국문_수정-3

180830_SDI_Brochure_국문_수정-3 (HQ) TEL +82-31-210-8209 E-mail energy.storage@samsung.com Reichenbachstrasse 2, 85737 Ismaning, Germany TEL +49-89-9292-7799(19) E-mail sintaek.yim@samsung.com 3655 North 1st Street, San Jose, CA 95134,

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,

More information

한아IT 브로셔-팜플렛최종

한아IT 브로셔-팜플렛최종 N e t w o r k A n a l y z e r / P r o t o c o l A n a l y z e r / V o I P M o n i t o r i n g / P e r f o r m a n c e What s in your Network? 목 차 와일드패킷 솔루션 WatchPoint 와일드패킷 분산 네트워크 분석 OmniPeek 4 6 7 8

More information

121220_워키디_상세설명서.indd

121220_워키디_상세설명서.indd www.walkie.co.kr Copyright 2012 by GC Healthcare Corp. All rights reserved. 02 03 04 05 06 07 08 AC8D good 09 10 AC8D 11 12 13 14 15 010-1234-5678 16 17 18 19 20 21 22 23 24 25 26 27 Tel: +82. 2. 1588.

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

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

2

2 Springer ebook Collection available on SPRINGERLINK 2 3 4 5 6 7 Visit springer.com/librarians for more information or call: REGIONAL OFFICE HONG KONG Springer China Limited Unit 1702, Tower 1 Enterprise

More information

02 C h a p t e r Java

02 C h a p t e r Java 02 C h a p t e r Java Bioinformatics in J a va,, 2 1,,,, C++, Python, (Java),,, (http://wwwbiojavaorg),, 13, 3D GUI,,, (Java programming language) (Sun Microsystems) 1995 1990 (green project) TV 22 CHAPTER

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

<28C3D6C1BEA3DFB8AEBAE429C7D1B1B9C0CFBABBBFACB1B8C3D1BFACC7D5C8B85FC1A633C8B85FB1B9C1A6C7D0BCFAB4EBC8B85FB9D75FBDC9C6F7C1F6BEF65FC7C1B7CEB1D7B7A52E687770>

<28C3D6C1BEA3DFB8AEBAE429C7D1B1B9C0CFBABBBFACB1B8C3D1BFACC7D5C8B85FC1A633C8B85FB1B9C1A6C7D0BCFAB4EBC8B85FB9D75FBDC9C6F7C1F6BEF65FC7C1B7CEB1D7B7A52E687770> 韓 國 日 本 硏 究 總 聯 合 會 韓 國 日 本 硏 究 總 聯 合 會 第 3 回 國 際 學 術 大 會 및 Symposium 第 3 回 國 際 學 術 大 會 및 Symposium 일본연구의 현황과 과제 ( 日 本 研 究 の 現 況 と 課 題 ) 大 韓 日 語 日 文 學 會 日 本 語 文 學 會 韓 國 日 本 文 化 學 會 韓 國 日 本 語 文 學 會 第 52

More information

0821-롯데 내지1-pdf

0821-롯데 내지1-pdf WORLD JAMSIL CREATING VALUE WORLD JAMSIL PH.2 PROJECT Contents 10 History of Lotte E&C 12 CEO s Message 14 Lotte E&C Information 16 Business Portfolio 18 Civil Works 22 Housing Works 28 Building Works

More information

10-2. 세무정보(완 - 31).hwp

10-2. 세무정보(완 - 31).hwp 한눈에 보는 해외금융계좌 신고제도 - 국세청 - Ⅰ. 제도 일반 1. 해외금융계좌 신고제도란? 거주자 및 내국법인이 해외금융기관에 개설 보유한 해외금융계좌의 잔액(보유계좌가 복수인 경우에는 각 계좌잔액을 합산함)이 신고대상연도 중에 어느 하루라도 10억원을 넘는 경우 그 계좌정보를 다음 연도 6월에 납세지 관할 세무서에 신고하는 제도입니다. - '10. 12월

More information

2011_LG»ó»ç_ÃÖÁ¾

2011_LG»ó»ç_ÃÖÁ¾ Contents 2011 Annual Report 04 CEO 인사말씀 06 사업영역 09 연혁 1 0 영업보고서 23 감사보고서 26 재무제표 04 05 사업영역 자원 원자재 부문 석유사업부 중동, 동남아시아, 중앙아시아, 남미 유전 및 가스전 개발 사업 Project사업부 CIS, 중동 지역의 Country Marketing을 통한 프로젝트 사업 CIS,

More information

P2WW-2642-01HNZ0

P2WW-2642-01HNZ0 P2WW-2642-01HNZ0 CardMinder 유저 가이드 시작하기 전에 CardMinder 는 이미지 스캐너를 사용하여 명함을 스캔하거나 주소 데이터 베이스로 변환시키 는 애플리케이션입니다. 이 매뉴얼에는 CardMinder 의 기능 및 창에 대한 자세한 설명 및 개요를 설명합니다. 본 매뉴얼을 표시하거나 인쇄하려면, Adobe Acrobat (7.0

More information

+Z760-01-0221_CL_USB.indd

+Z760-01-0221_CL_USB.indd Clinique Sonic System purifying cleansing brush brosse nettoyante purifiante user guide/guide d utilisation Z760-01-0221 JP TC SC KOR 日 本 語 ( 保 証 書 付 き) 1-13 繁 體 中 文 14-24 简 体 中 文 25-35 한국어 36-46 JP JP

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r Jakarta is a Project of the Apache

More information

uFOCS

uFOCS 1 기 : 기 UF_D_V250_002 기 기 기 품 ufocs 기 v2.5.0 히기기기기기기기기기 기 Manual 기 version 기 3.2 기품 2011.7.29 히기 345-13 1 Tel : 02-857-3051 Fax : 02-3142-0319 : http://www.satu.co.kr 2010 SAT information Co., Ltd. All

More information

??꽂???

??꽂??? Vol.64 ISSUE 2018 유니시티코리아컨벤션 HEALTH 유니시티 5 STEP 프로그램 _STEP 4 기초영양 신제품소개 _ 바이오스라이프 7 마이크로바이옴의세계 _ 장내환경과면역력 BEAUTY 인상을결정짓는눈가피부신제품소개 _ 네이젠아이롤러 UNICITY NEWS 5 STEP 모바일사이트오픈 Unicity Korea Life Magazine 2018

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

consulting

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

More information

BTSK

BTSK 목장이야기 STORY OF SEASONS 1 사용하기 전에 게임 소개 2 어떤 게임? 3 게임의 재미 요소 4 스토리 5 주인공 소개 6 결혼 상대 후보 7 목장 주인과 주민 준비하기 8 조작 방법 9 게임 시작 방법 10 데이터 저장 화면 설명 11 필드 화면 12 메뉴 화면 목장 생활의 기본 13 계절과 시간 14 주인공의 상태 15 액션(1) 16 액션(2)

More information

Microsoft PowerPoint - ch02_인터넷 이해와 활용.ppt

Microsoft PowerPoint - ch02_인터넷 이해와 활용.ppt 컴퓨터 활용과 실습 원리를 알면 IT가 맛있다 chapter 2. 윈도우XP, 한글25, 엑셀23, 파워포인트23 인터넷 이해와 활용 www.hanb.co.kr -1- 학습목표 목차 통신과 네트워크의 개념 통신과 네트워크 컴퓨터 통신망 인터넷정의및역사 인터넷주소체계 인터넷 정의와 역사 인터넷 주소 웹서비스의정의및특징 웹 서비스 웹 브라우저의 기능 웹 브라우저

More information

BSC Discussion 1

BSC Discussion 1 Copyright 2006 by Human Consulting Group INC. All Rights Reserved. No Part of This Publication May Be Reproduced, Stored in a Retrieval System, or Transmitted in Any Form or by Any Means Electronic, Mechanical,

More information

01.하나금융_일반현황

01.하나금융_일반현황 일반현황 인사말 4 연혁 추이 6 경영계획 및 전략 16 조직 및 영업점/임직원 현황 18 자회사 등 20 자본금 21 대주주/주식소유 상황 23 배당 24 경영실적 개요 26 부문별 수지상황 29 재무상황 개황 38 자금조달 및 운용 39 유가증권 투자 및 평가손익 48 외화자산 및 부채 51 대손상각 및 충당금 53 무수익 및 고정 이하 여신 55 주석거래

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Synergy EDMS www.comtrue.com opyright 2001 ComTrue Technologies. All right reserved. - 1 opyright 2001 ComTrue Technologies. All right reserved. - 2 opyright 2001 ComTrue Technologies. All right reserved.

More information

P2WW-2620-01HNZ0

P2WW-2620-01HNZ0 P2WW-2620-01HNZ0 ScanSnap Organizer 유저 가이드 시작하기 전에 ScanSnap Organizer 를 구입해 주셔서 감사합니다. 본 유저 가이드는는 개요 및 ScanSnap Organizer 의 화면과 기능에 대해 설명합니다. ScanSnap Organizer 를 사용하기 전에는 바른 사용을 위해서 이 가이드를 반드시 읽어 주십 시오.

More information

<4D F736F F F696E74202D20C1A63235C0E520B3D7C6AEBFF6C5A920C7C1B7CEB1D7B7A1B9D628B0ADC0C729205BC8A3C8AF20B8F0B5E55D>

<4D F736F F F696E74202D20C1A63235C0E520B3D7C6AEBFF6C5A920C7C1B7CEB1D7B7A1B9D628B0ADC0C729205BC8A3C8AF20B8F0B5E55D> Power Java 제 25 장네트워크프로그래밍 이번장에서학습할내용 네트워크프로그래밍의개요 URL 클래스 TCP를이용한통신 TCP를이용한서버제작 TCP를이용한클라이언트제작 UDP 를이용한통신 자바를이용하여서 TCP/IP 통신을이용하는응응프로그램을작성하여봅시다. 서버와클라이언트 서버 (Server): 사용자들에게서비스를제공하는컴퓨터 클라이언트 (Client):

More information

SK∞«º≥ ºˆ¡§060323

SK∞«º≥ ºˆ¡§060323 2006 Annual Report SEIZING FUTURE OPPORTUNITIES Contents 03 04 06 16 18 20 24 28 32 36 38 41 50 52 58 62 63 OPENNESS, ENTHUSIASM AND EVOLUTION... THIS IS SK ENGINEERING & CONSTRUCTION SK E&C Annual Report

More information

untitled

untitled 제13-48-898호 WEDNESDAY JOURNAL 수요저널은 모바일버전 뉴스와 PDF 서비스도 제공합니다. 앞서가는 뉴스! 홍콩 수요저널! 아무 일에든지 다툼이나 허영으로 하지 말고 오직 겸손한 마음으로 각각 자기보다 남을 낫게 여기고 빌립2:3 Publisher : Park Bong Chul Wednesday Journal Ltd. Add: Rm 2612,

More information