Microsoft Word - 기술노트36_11g R1 Clusterware를 이용한 Oracle HA 구성 _최종본_.doc

Size: px
Start display at page:

Download "Microsoft Word - 기술노트36_11g R1 Clusterware를 이용한 Oracle HA 구성 _최종본_.doc"

Transcription

1 Goodus 기술노트 [36 회 ] 11g R1 Clusterware 를이용한 Oracle H/A 구성 Author 유광복, 조연철, 백순성 Creation Date Last Updated Version 1.0 Copyright(C) 2004 Goodus Inc. All Rights Reserved Version 변경일자 변경자 ( 작성자 ) 주요내용 유광복, 조연철, 백순성 문서최초작성 2 3

2 Contents 1.1. Oracle Clusterware Oracle Clusterware 기본동작 g Release 2 is Protect 3 rd party Applications The H/A Framework Shared Resources Node configurations Oracle H/A 기본구성절차 Using the Application Framework Oracle H/A 구성 환경설정 Create an VIP(RAC VIP) Create an action Program Create an application Profile create an application profile Set the permission on your application Check the H/A resource Oracle H/A 운용 VIP Start Mount Start Database Start Listener Start Listener, Database, Mount, VIP STOP H/A Fail-Over Test Listener Process kill Instance Abort Oracle engine, Data Filesystem Fail System Halt 참고사항 crs_profile 명령어 Arguments (1.3.4 절참조 ) Sampla Script(1.3.4 절참조 )

3 1.1. Oracle Clusterware Oracle Clusterware 기본동작 kill -9 LGWR Process Restart Automatically kill -9 listener PID Restart Automatically kill oracle.exe by Windows Task Manager Restart Automatically kill tnslsnr.exe by Windows Task Manager Restart Automatically When a Node dies VIP fails over to a different node g Release 2 is Protect 3 rd party Applications Oracle Clusterware 를사용하여 Single Instance 환경의 HA 기능도제공하며, Single Node / Local FileSystem 을 ASM 또는 Cluster FileSystem 인 OCFS 등으로전환하여 High Availability 기능을이용할수있다. 10g R1 까지지원되지않던 Non-Oracle Application 의 Failure Protect 기능이 10g R2 부터가능해졌으 므로본문서는위의기능을기반으로 Test 하였다 The H/A Framework 오라클에서제공하는고가용성솔루션은일반적으로 RAC 를의미한다. 이는최소두개 System 을기반으로 1 개의 Databaes 를노드개수만큼의인스턴스에서서비스를할수있는장점을가지고있다. 즉특정시스템에서장애가발생해도남아있는시스템에서서비스를계속수행하기때문에무중단서비스를구현이가능하다. H/A 기반은 Active Standby 구조로고가용성솔루션을제공한다. 9i 에서는 OS Vender Cluster 를기반으로만구현이가능하였는데 10g Clusterware 에서그기능을완벽하게수행할수있다. 아래문서는서로다른두개의 Database 구성하여각각 Active Standby Database 를구성을하고실제 failover 발생시어떻게지속적으로서비스수행이가능한지를구현하였다. H/A 는 RAC 에비해서 system fault 가발생하면 service down 이조금발생함을알려드립니다 Shared Resources - A common disks : OCR & Vote for Oracle clusterware system files - A common Network interconnect - Same OS - 3 -

4 Node configurations - Node 1 : Running Oracle Instance & Clusterware, Protecting Application A - Node 2 : Running Oracle Clusterware, Protecting Application B - Node 3 : Running Oracle Clusterware - Node 4 : Running Oracle Clusterware, Protecting Application C & D Oracle H/A 기본구성절차 Hardware 구성및 OS 구성은 10g RAC 설치와동일하게이뤄지며 Vendor Clusterware 없이구현이가능합니다. 1) install Oracle S/W Only into a new Oracle Clusterware HOME on the 2 nd Node 2) Install Cluster Filesystem both nodes 3) Modify Oracle Configurations - orapwd - init<sid>.ora - listener.ora, tnsnames.ora 4) Create / Tegister / Start / Relocate Resources - $ORA_CRS_HOME/crs/public - 4 -

5 Using the Application Framework 1) Create an VIP - required if the application is access via network clients 2) Create an Action Program - Oracle Clusterware to start, stop & query the status check - C, java or 기타 scripting language - => RAC sample code => 3) Create an Application Profile - Describes the process and limits to protect 4) Register the Application - Register the Application Profile with Oracle Clusterware 5) Set the permission on your Application - 5 -

6 1.3. Oracle H/A 구성 환경설정 Node 1 Node 2 Hostname goodus1 goodus goodus1 loghost goodus goodus2 loghost goodus1 /etc/hosts goodus1-vip goodus2-vip goodus1-vip goodus2-vip goodus1-priv goodus2-priv goodus1-priv goodus2-priv CRS, RDBMS user oracle, dba oracle, dba CRS_HOME /crs/app/oracle/product/11/crs /crs/app/oracle/product/11/crs RDBMS_HOME /oracle1/app/oracle/product/11/db /oracle2/app/oracle/product/11/db ORACLE_SID goodus1 goodus2 Vote disk Ocr disk /dev/rdsk/c1t10d0s3 /dev/rdsk/c1t10d0s4 /dev/rdsk/c1t10d0s5 /dev/rdsk/c1t10d0s0 /dev/rdsk/c1t10d0s1-6 -

7 Create an VIP(RAC VIP) 10g CRS 상태의 VIP 는 Oracle 에서서비스하는 IP 이다. 즉 client 가 listener 를통해서접속하는 IP 임. srvctl add nodeapps -n goodus1 -A goodus1-vip/ /hme0 srvctl add nodeapps -n goodus2 -A goodus2-vip/ /hme0 crsstat ora.goodus1.gsd OFFLINE OFFLINE ora.goodus1.ons OFFLINE OFFLINE ora.goodus1.vip OFFLINE OFFLINE ora.goodus2.gsd OFFLINE OFFLINE ora.goodus2.ons OFFLINE OFFLINE ora.goodus2.vip OFFLINE OFFLINE 아래 GSD, ONS 는 H/A 구성에서불필요함으로 OCR 정보에서삭제한다. $ crs_unregister ora.goodus1.gsd $ crs_unregister ora.goodus1.ons $ crs_unregister ora.goodus2.gsd $ crs_unregister ora.goodus2.ons crsstat ora.goodus1.vip OFFLINE OFFLINE ora.goodus2.vip OFFLINE OFFLINE Create an action Program cd $ORA_CRS_HOME/crs/public ls -al total 44 drwxrwxrwt 2 oracle dba 512 Nov 4 16:35. drwxr-xr-x 14 root dba 512 Nov 5 19:36.. -rwxrwxrwx 1 oracle dba 1691 Nov 5 14:35 action_db1.pl -rwxrwxrwx 1 oracle dba 1691 Nov 5 14:35 action_db2.pl -rwxrwxrwx 1 oracle dba 1654 Nov 5 14:35 action_listener1.pl -rwxrwxrwx 1 oracle dba 1654 Nov 5 14:35 action_listener2.pl -rwxrwxrwx 1 oracle dba 1752 Nov 5 14:35 action_mount1.pl - 7 -

8 -rwxrwxrwx 1 oracle dba 1773 Nov 5 14:35 action_mount2.pl => 위파일을첨부된파일로.pl 확장자로등록해야함 start, stop, check 의 script 를정의합니다. (1.6.2 절참조 ) Create an application Profile mount (/oracle, /oradata) : 모니터링할 file system list db : 모니터링할 database listener : 모니터링할 listener clusterware 가인식하고 ocr 정보에등록하는포맷형식으로 cap 파일을생성함. crs_profile -create mount1 -t application -r ora.goodus1.vip -a /crs/app/oracle/product/11/crs/crs/public/action_mount1.pl -o ci=60,ra=5 crs_profile -create db1 -t application -r mount1 -a /crs/app/oracle/product/11/crs/crs/public/action_db1.pl -o ci=60,ra=5 crs_profile -create listener1 -t application -r ora.goodus1.vip -a /crs/app/oracle/product/11/crs/crs/public/action_listener1 crs_profile -create mount2 -t application -r ora.goodus2.vip -a /crs/app/oracle/product/11/crs/crs/public/action_mount2.pl -o ci=60,ra=5 crs_profile -create db2 -t application -r mount2 -a /crs/app/oracle/product/11/crs/crs/public/action_db2.pl -o ci=60,ra=5 crs_profile -create listener2 -t application -r ora.goodus2.vip -a /crs/app/oracle/product/11/crs/crs/public/action_listener create an application profile - action program 을등록하면아래디렉토리에 cap 파일이생성됨 cd $ORA_CRS_HOME/crs/profile ls al -rw-r--r-- 1 root root 773 Nov 5 17:48 db1.cap - 8 -

9 -rw-r--r-- 1 root root 773 Nov 5 17:50 db2.cap -rw-r--r-- 1 root root 800 Nov 5 17:49 listener1.cap -rw-r--r-- 1 root root 800 Nov 5 17:50 listener2.cap -rw-r--r-- 1 root root 791 Nov 5 17:48 mount1.cap -rw-r--r-- 1 root root 791 Nov 5 17:50 mount2.cap crs_register mount1 crs_register db1 crs_register listener1 crs_register mount2 crs_register db2 crs_register listener2 ** 등록이완료되면다른노드로 cap, pl 파일을 copy 를해야함 ( $ORA_CRS_HOME/crs/profile, $ORA_CRS_HOME/crs/public) Clusterware 의 OCR device 에 crs 가모니터링하고 fail 이발생하면 restart 또는 failover 를수행할 resource 를등록한다 Set the permission on your application action program 을수행할 user 를 oracle user 로변경 crs_setperm mount1 -u user:oracle:r-x crs_setperm db1 -u user:oracle:r-x crs_setperm listener1 -u user:oracle:r-x crs_setperm mount2 -u user:oracle:r-x crs_setperm db2 -u user:oracle:r-x crs_setperm listener2 -u user:oracle:r-x Check the H/A resource crsstat db1 OFFLINE OFFLINE db2 OFFLINE OFFLINE - 9 -

10 listener1 OFFLINE OFFLINE listener2 OFFLINE OFFLINE mount1 OFFLINE OFFLINE mount2 OFFLINE OFFLINE ora.goodus1.vip OFFLINE OFFLINE ora.goodus2.vip OFFLINE OFFLINE 1.4. Oracle H/A 운용 VIP Start ora.goodus1.vip OFFLINE OFFLINE $ ifconfig -a hme0: flags= <up,broadcast,running,multicast,ipv4> mtu 1500 index 3 inet netmask ffffff00 broadcast $ crs_start ora.goodus1.vip Attempting to start `ora.goodus1.vip` on member `goodus1` Start of `ora.goodus1.vip` on member `goodus1` succeeded. $ ifconfig -a hme0: flags= <up,broadcast,running,multicast,ipv4> mtu 1500 index 3 inet netmask ffffff00 broadcast hme0:1: flags= <up,broadcast,running,multicast,deprecated,ipv4> mtu 1500 index 3 inet netmask ffffff00 broadcast ora.goodus1.vip ONLINE ONLINE on goodus Mount Start mount1 OFFLINE OFFLINE $ df k grep ora $ crs_start mount1 Attempting to start `mount1` on member `goodus1` Start of `mount1` on member `goodus1` succeeded

11 $ df -k grep ora /dev/dsk/c1t1d0s % /oradata1 /dev/dsk/c1t1d0s % /oracle1 db1 OFFLINE OFFLINE db2 OFFLINE OFFLINE listener1 OFFLINE OFFLINE listener2 OFFLINE OFFLINE mount1 ONLINE ONLINE on goodus1 mount2 OFFLINE OFFLINE ora.goodus1.vip ONLINE ONLINE on goodus1 ora.goodus2.vip OFFLINE OFFLINE Database Start db1 OFFLINE OFFLINE $ ps ef grep smon $ crs_start db1 Attempting to start `mount1` on member `goodus1` Start of `mount1` on member `goodus1` succeeded $ ps -ef grep smon oracle :09:05? 0:00 ora_smon_goodus1 oracle :09:28 pts/1 0:00 grep smon db1 ONLINE ONLINE on goodus1 db2 OFFLINE OFFLINE listener1 OFFLINE OFFLINE listener2 OFFLINE OFFLINE mount1 ONLINE ONLINE on goodus1 mount2 OFFLINE OFFLINE ora.goodus1.vip ONLINE ONLINE on goodus1 ora.goodus2.vip OFFLINE OFFLINE Listener Start listener1 OFFLINE OFFLINE $ ps ef grep tns

12 $ crs_start listener1 Attempting to start `listener1` on member `goodus1` Start of `listener1` on member `goodus1` succeeded. $ ps -ef grep tns oracle :11:46? 0:00 /oracle1/app/oracle/product/11/db/bin/tnslsnr LISTENER1 -inherit oracle :09:28 pts/1 0:00 grep smon db1 ONLINE ONLINE on goodus1 db2 OFFLINE OFFLINE listener1 ONLINE ONLINE on goodus1 listener2 OFFLINE OFFLINE mount1 ONLINE ONLINE on goodus1 mount2 OFFLINE OFFLINE ora.goodus1.vip ONLINE ONLINE on goodus1 ora.goodus2.vip OFFLINE OFFLINE Listener, Database, Mount, VIP STOP $ crs_stop listener1 Attempting to stop `listener1` on member `goodus1` Stop of `listener1` on member `goodus1` succeeded. $ crs_stop db1 Attempting to stop `db1` on member `goodus1` Stop of `db1` on member `goodus1` succeeded. $ crs_stop mount1 Attempting to stop `mount1` on member `goodus1` Stop of `mount1` on member `goodus1` succeeded. $ crs_stop ora.goodus1.vip Attempting to stop `ora.goodus1.vip` on member `goodus1` Stop of `ora.goodus1.vip` on member `goodus1` succeeded. db1 OFFLINE OFFLINE db2 OFFLINE OFFLINE listener1 OFFLINE OFFLINE listener2 OFFLINE OFFLINE mount1 OFFLINE OFFLINE mount2 OFFLINE OFFLINE ora.goodus1.vip OFFLINE OFFLINE ora.goodus2.vip OFFLINE OFFLINE

13 1.5. H/A Fail-Over Test Listener Process kill $ ps ef grep tns oracle :11:46? 0:00 /oracle1/app/oracle/product/11/db/bin/tnslsnr LISTENER1 inherit $ kill while true > do > ps -ef grep tns > sleep 2 > echo "===" > done root :45:20 pts/4 0:00 grep tns === root :45:22 pts/4 0:00 grep tns === root :45:24 pts/4 0:00 grep tns === oracle :45:25? 0:00 /oracle1/app/oracle/product/11/db/bin/tnslsnr LISTENER1 inherit ** Check_interval 이 60 으로설정되어있으므로최대 60 초이내에 check 하여해당프로세스가 종료되었으면 crsd daemon 이 start 함 Instance Abort $ ps ef grep smon oracle :09:05? 0:01 ora_smon_goodus1 $ kill while true > do > ps -ef grep smon > sleep 2 > echo "===" > done === root :47:04 pts/4 0:00 grep smon === root :47:08 pts/4 0:00 grep smon === root :47:10 pts/4 0:00 grep smon oracle :47:08? 0:00 ora_smon_goodus1 ** Check_interval 이 60 으로설정되어있으므로최대 60 초이내에 check 하여해당프로세스가 종료되었으면 crsd daemon 이 start 함

14 Oracle engine, Data Filesystem Fail fuser -ck /oradata1 /oradata1: 13616o 13041o 13002o 13000o 12944o 12942o 12940o 12938o 12936o 12934o 12913o umount /oradata1 while true > do > df k grep ora > sleep 2 > echo "===" > done ==== ==== ==== /dev/dsk/c1t1d0s % /oradata1 /dev/dsk/c1t1d0s % /oracle1 ** Check_interval 이 60 으로설정되어있으므로최대 60 초이내에 check 하여파일시스템마운트가 되어있지않으면 crsd daemon 마운트시킴 ** db, listener 까지 start 함 System Halt db1 ONLINE ONLINE on goodus1 db2 ONLINE ONLINE on goodus2 listener1 ONLINE ONLINE on goodus1 listener2 ONLINE ONLINE on goodus2 mount1 ONLINE ONLINE on goodus1 mount2 ONLINE ONLINE on goodus2 ora.goodus1.vip ONLINE ONLINE on goodus1 ora.goodus2.vip ONLINE ONLINE on goodus2 halt (2 번노드를강제종료함 ) db1 ONLINE ONLINE on goodus1 db2 ONLINE OFFLINE

15 listener1 ONLINE ONLINE on goodus1 listener2 ONLINE OFFLINE mount1 ONLINE ONLINE on goodus1 mount2 ONLINE OFFLINE ora.goodus1.vip ONLINE ONLINE on goodus1 ora.goodus2.vip ONLINE OFFLINE db1 ONLINE ONLINE on goodus1 db2 ONLINE ONLINE on goodus1 listener1 ONLINE ONLINE on goodus1 listener2 ONLINE ONLINE on goodus1 mount1 ONLINE ONLINE on goodus1 mount2 ONLINE ONLINE on goodus1 ora.goodus1.vip ONLINE ONLINE on goodus1 ora.goodus2.vip ONLINE ONLINE on goodus1 $ ps -ef grep smon oracle :21:33? 0:01 ora_smon_goodus1 oracle :31:34? 0:01 ora_smon_goodus2 oracle :32:13 pts/1 0:00 grep smon $ ps -ef grep tns oracle :11:46? 0:00 /oracle1/app/oracle/product/11/db/bin/tnslsnr LISTENER1 -inherit oracle :32:02? 0:00 /oracle2/app/oracle/product/11/db/bin/tnslsnr LISTENER2 -inherit oracle :32:14 pts/1 0:00 grep tns $ df -k grep ora /dev/dsk/c1t1d0s % /oradata1 /dev/dsk/c1t1d0s % /oracle1 /dev/dsk/c1t5d0s % /oradata2 /dev/dsk/c1t5d0s % /oracle2 $ ifconfig a... hme0: flags= <up,broadcast,running,multicast,ipv4> mtu 1500 index 3 inet netmask ffffff00 broadcast hme0:1: flags= <up,broadcast,running,multicast,deprecated,ipv4> mtu 1500 index 3 inet netmask ffffff00 broadcast hme0:2: flags= <up,broadcast,running,multicast,deprecated,ipv4> mtu 1500 index 3 inet netmask ffffff00 broadcast ** Node 2 번을강제종료되면 2 번노드에실행되고있는 application resource 는 Node 1 번으로 failover 되면서계속적으로서비스를수행함. ** Node 2 번이정상적으로부팅이되면수동으로 failback 을수행해야함

16 AUTO_START=restore => 0 으로수정해야함 1.6. 참고사항 crs_profile 명령어 Arguments (1.3.4 절참조 ) Name Value Description -create myapp Name of the application as stored inside the OCR -t application Type of OCR entry (must be Application) -d Oracle Sample Long name of the application -r myvip Name of the Oracle Clusterware managed resource that must be in status ONLINE for our application to start. The VIP -a /tmp/myappcheck Name of the action program used to start, stop and check the application -o See following entries in tables ci=5 ra=60 Check Interval Restart Attempts Sampla Script(1.3.4 절참조 ) 1) action_mount.pl -- action_mount.pl!/usr/bin/perl Copyright (c) 2002, 2006, Oracle. All rights reserved. action_db.pl This perl script is the action script for start / stop / check the Oracle Instance in a cold failover configuration. NAME action_db.pl DESCRIPTION NOTES Usage: rknapp 05/22/06 - Creation Environment settings, please modify and adapt this $ORA_CRS_HOME = "/crs/app/oracle/product/11/crs"; $CRS_HOME_BIN = "/crs/app/oracle/product/11/crs/bin"; $CRS_HOME_SCRIPT = "/crs/app/oracle/product/11/crs/crs/public"; $ORACLE_HOME_BIN = "/oracle1/app/oracle/product/11/db/bin"; $ORACLE_HOME = "/oracle1/app/oracle/product/11/db"; $ORA_SID = "goodus1";

17 $ORA_USER = "oracle"; $PASSWD = "tnstjd"; if ($ARGV!= 0 ) { print "usage: start stop check required n"; exit; $command = $ARGV[0]; Database start stop check Start File system if ($command eq "start" ) { system (" su - root tnstjd /usr/sbin/mount /dev/dsk/c1t1d0s0 /oradata1 /usr/sbin/mount /dev/dsk/c1t1d0s7 /oracle1 " ); Stop File system if ($command eq "stop" ) { system (" su - root tnstjd /usr/sbin/fuser -ck /oradata1 /usr/sbin/fuser -ck /oracle1 /usr/sbin/umount /oradata1 /usr/sbin/umount /oracle1 " ); Check filesystem if ($command eq "check" ) { check(); sub check { my($check_proc,$process) $mount_ora = "/oracle1"; $mount_oradata = "/oradata1"; $check_ora = qx(df -k grep oracle1 awk '{print $6'); $check_oradata = qx(df -k grep oradata1 awk '{print $6'); chomp($check_ora); chomp($check_oradata); if (($mount_ora eq $check_ora) && ($mount_oradata eq $check_oradata)) { exit 0; else { exit 1;

18 2) action_listener.pl!/usr/bin/perl!/usr/bin/perl Copyright (c) 2002, 2006, Oracle. All rights reserved. action_listener.pl This perl script is the action script for start / stop / check the Oracle Listener in a cold failover configuration. NAME action_listener.pl DESCRIPTION NOTES Usage: rknapp 05/22/06 - Creation Environment settings, please modify and adapt this $ORA_CRS_HOME = "/crs/app/oracle/product/11/crs"; $CRS_HOME_BIN = "/crs/app/oracle/product/11/crs/bin"; $CRS_HOME_SCRIPT = "/crs/app/oracle/product/11/crs/crs/public"; $ORACLE_HOME_BIN = "/oracle1/app/oracle/product/11/db/bin"; $ORACLE_HOME = "/oracle1/app/oracle/product/11/db"; $ORA_SID = "goodus1"; $ORA_USER = "oracle"; if ($ARGV!= 0 ) { print "usage: start stop check required n"; exit; $command = $ARGV[0]; Listener start / stop check start listener if ($command eq "start") { system (" su - $ORA_USER << EOF export ORACLE_HOME=$ORACLE_HOME $ORACLE_HOME_BIN/lsnrctl start LISTENER1 EOF"); stop listener if ($command eq "stop") { system (" su - $ORA_USER << EOF export ORACLE_HOME=$ORACLE_HOME $ORACLE_HOME_BIN/lsnrctl stop LISTENER1-18 -

19 EOF"); check listener if ($command eq "check") { check_listener(); sub check_listener { my($check_proc_listener,$process_listener) $process_listener = "$ORACLE_HOME_BIN/tnslsnr LISTENER1"; $check_proc_listener = qx(ps -aef grep "tnslsnr LISTENER1" grep -v grep awk '{print $8, $9'); chomp($check_proc_listener); if ($process_listener eq $check_proc_listener) { exit 0; else { exit 1; 3) action_db1.pl!/usr/bin/perl Copyright (c) 2002, 2006, Oracle. All rights reserved. action_db.pl This perl script is the action script for start / stop / check the Oracle Instance in a cold failover configuration. NAME action_db.pl DESCRIPTION NOTES Usage: rknapp 05/22/06 - Creation Environment settings, please modify and adapt this $ORA_CRS_HOME = "/crs/app/oracle/product/11/crs"; $CRS_HOME_BIN = "/crs/app/oracle/product/11/crs/bin"; $CRS_HOME_SCRIPT = "/crs/app/oracle/product/11/crs/crs/public"; $ORACLE_HOME_BIN = "/oracle1/app/oracle/product/11/db/bin"; $ORACLE_HOME = "/oracle1/app/oracle/product/11/db"; $ORA_SID = "goodus1"; $ORA_USER = "oracle"; if ($ARGV!= 0 ) {

20 print "usage: start stop check required n"; exit; $command = $ARGV[0]; Database start stop check Start database if ($command eq "start" ) { system (" su - $ORA_USER << EOF export ORACLE_SID=$ORA_SID export ORACLE_HOME=$ORACLE_HOME $ORACLE_HOME/bin/sqlplus /nolog connect / as sysdba startup quit EOF" ); Stop database if ($command eq "stop" ) { system (" su - $ORA_USER << EOF export ORACLE_SID=$ORA_SID export ORACLE_HOME=$ORACLE_HOME $ORACLE_HOME/bin/sqlplus /nolog connect / as sysdba shutdown immediate quit EOF" ); Check database if ($command eq "check" ) { check(); sub check { my($check_proc,$process) $process = "ora_pmon_$ora_sid"; $check_proc = qx(ps -aef grep ora_pmon_$ora_sid grep -v grep awk '{print $8'); chomp($check_proc); if ($process eq $check_proc) { exit 0; else { exit 1; 4) crs_stat script

21 !/usr/bin/perl!/usr/bin/ksh Sample 10g CRS resource status query script Description: - Returns formatted version of crs_stat -t, in tabular format, with the complete rsc names and filtering keywords - The argument, $RSC_KEY, is optional and if passed to the script, will limit the output to HA resources whose names match $RSC_KEY. Requirements: - $ORA_CRS_HOME should be set in your environment RSC_KEY=$1 QSTAT=-u AWK=/usr/xpg4/bin/awk if not available use /usr/bin/awk Table header:echo "" $AWK 'BEGIN {printf "%-45s %-10s %-18s n", "HA Resource", "Target", "State"; printf "%-45s %-10s %-18s n", " ", "------", "-----";' Table body: $ORA_CRS_HOME/bin/crs_stat $QSTAT $AWK 'BEGIN { FS="="; state = 0; $1~/NAME/ && $2~/'$RSC_KEY'/ {appname = $2; state=1; state == 0 {next; $1~/TARGET/ && state == 1 {apptarget = $2; state=2; $1~/STATE/ && state == 2 {appstate = $2; state=3; state == 3 {printf "%-45s %-10s %-18s n", appname, apptarget, appstate; state=0;'

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 PowerPoint - Tech-iSeminar_10g_RAC_CRS.ppt

Microsoft PowerPoint - Tech-iSeminar_10g_RAC_CRS.ppt Getting the most out of MetaLink 남궁혁 한국오라클 ( 주 ) 제품지원실 목차 1. Cluster 개요 2. OPROCD 3. EVMD 4. CSSD 5. CRSD 6. CRS Install 7. 참고자료 Clusters Alternative to symmetric multiprocessing (SMP) Group of interconnected,

More information

Simplify your Job Automatic Storage Management DB TSC

Simplify your Job Automatic Storage Management DB TSC Simplify your Job Automatic Storage Management DB TSC 1. DBA Challenges 2. ASM Disk group 3. Mirroring/Striping/Rebalancing 4. Traditional vs. ASM 5. ASM administration 6. ASM Summary Capacity in Terabytes

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

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

Microsoft PowerPoint - Linux_10gRAC_3Node

Microsoft PowerPoint - Linux_10gRAC_3Node Linux 환경에서 3 Node 10g RAC 구성및 Data 이관하기 일시 : 2006. 08. 10 Contents I. RAC 구성환경및전체순서 II. Volume 및 Server 환경 Setup III. CRS 및 DB S/W 설치 IV. CRS 및 DB S/W Patchset V. File-System DBF raw-device 이관 VI. Sinlge

More information

Oracle Database 10g: Self-Managing Database DB TSC

Oracle Database 10g: Self-Managing Database DB TSC Oracle Database 10g: Self-Managing Database DB TSC Agenda Overview System Resource Application & SQL Storage Space Backup & Recovery ½ Cost ? 6% 12 % 6% 6% 55% : IOUG 2001 DBA Survey ? 6% & 12 % 6% 6%

More information

목 차

목      차 Oracle 9i Admim 1. Oracle RDBMS 1.1 (System Global Area:SGA) 1.1.1 (Shared Pool) 1.1.2 (Database Buffer Cache) 1.1.3 (Redo Log Buffer) 1.1.4 Java Pool Large Pool 1.2 Program Global Area (PGA) 1.3 Oracle

More information

MySQL-Ch10

MySQL-Ch10 10 Chapter.,,.,, MySQL. MySQL mysqld MySQL.,. MySQL. MySQL....,.,..,,.,. UNIX, MySQL. mysqladm mysqlgrp. MySQL 608 MySQL(2/e) Chapter 10 MySQL. 10.1 (,, ). UNIX MySQL, /usr/local/mysql/var, /usr/local/mysql/data,

More information

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수 사용 설명서 TeraStation Pro II TS-HTGL/R5 패키지 내용물: 본체 (TeraStation) 이더넷 케이블 전원 케이블 TeraNavigator 설치 CD 사용 설명서 (이 설명서) 제품 보증서 www.buffalotech.com 소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를

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

오라클 데이터베이스 10g 핵심 요약 노트

오라클 데이터베이스 10g 핵심 요약 노트 1 10g 10g SYSAUX 10g 22 Oracle Database 10g, 10g. 10g. (Grid), 10g.. 10g SYSAUX (ASM, Automatic Storage Management) 10g 10g. g. (DBA).,., 1).,..? 10g,.. (Larry Ellison).. (Leverage Components), (ASM) (

More information

Oracle9i Real Application Clusters

Oracle9i Real Application Clusters Senior Sales Consultant Oracle Corporation Oracle9i Real Application Clusters Agenda? ? (interconnect) (clusterware) Oracle9i Real Application Clusters computing is a breakthrough technology. The ability

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

Backup Exec

Backup Exec (sjin.kim@veritas.com) www.veritas veritas.co..co.kr ? 24 X 7 X 365 Global Data Access.. 100% Storage Used Terabytes 9 8 7 6 5 4 3 2 1 0 2000 2001 2002 2003 IDC (TB) 93%. 199693,000 TB 2000831,000 TB.

More information

Solaris Express Developer Edition

Solaris Express Developer Edition Solaris Express Developer Edition : 2008 1 Solaris TM Express Developer Edition Solaris OS. Sun / Solaris, Java, Web 2.0,,. Developer Solaris Express Developer Edition System Requirements. 768MB. SPARC

More information

The Self-Managing Database : Automatic Health Monitoring and Alerting

The Self-Managing Database : Automatic Health Monitoring and Alerting The Self-Managing Database : Automatic Health Monitoring and Alerting Agenda Oracle 10g Enterpirse Manager Oracle 10g 3 rd Party PL/SQL API Summary (Self-Managing Database) ? 6% 6% 12% 55% 6% Source: IOUG

More information

AKG 설 맞이 사내 특판 이벤트

AKG 설 맞이 사내 특판 이벤트 ORACLE RAC 설치매뉴얼 (11g+HACMP 6.1+RAWDEVICE) OTS 유명수, 정명호 2015.08.04 Contents 1. HACMP 설치 2. HACMP 설정 3. 사전준비사항 4. Grid 설치 5. DB 엔진설치 6. DB 생성 7. 설치확인및설정사항 1. HACMP 설치 (1/5) HACMP S/W 를특정디렉토리에압축해제 smit installp

More information

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인 스마일서브 CLOUD_Virtual 워드프레스 설치 (WORDPRESS INSTALL) 스마일서브 가상화사업본부 Update. 2012. 09. 04. 본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게

More information

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

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

More information

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5.

Document Server Information Items Description Test Date 2011 / 05 / 31 CPU Intel(R) Xeon(R) CPU 2.40GHz X 8 Main Memory 1GB O/S version OEL 5. 11g 에서향상된 ASMCMD-CP 기능 (Oracle 11g R1 11.1.0.7) Author: Hyun-Ho, Jung Job: Oracle DBA Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-05-31 Document Server

More information

문서 제목

문서 제목 1 : Oracle9i JRE(Java Runtime Environment) OUI(Oracle Universal Installer) OS 25MB Memory 512 MB RAM # grep MemTotal /proc/meminfo Swap Space RAM 2 400 MB # /sbin/swapon s CD-ROM Drive Disk Space Temporary

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

/chroot/lib/ /chroot/etc/

/chroot/lib/ /chroot/etc/ 구축 환경 VirtualBox - Fedora 15 (kernel : 2.6.40.4-5.fc15.i686.PAE) 작동 원리 chroot유저 ssh 접속 -> 접속유저의 홈디렉토리 밑.ssh의 rc 파일 실행 -> daemonstart실행 -> daemon 작동 -> 접속 유저만의 Jail 디렉토리 생성 -> 접속 유저의.bashrc 의 chroot 명령어

More information

강의10

강의10 Computer Programming gdb and awk 12 th Lecture 김현철컴퓨터공학부서울대학교 순서 C Compiler and Linker 보충 Static vs Shared Libraries ( 계속 ) gdb awk Q&A Shared vs Static Libraries ( 계속 ) Advantage of Using Libraries Reduced

More information

데이터베이스_오라클_부록(최종).indd

데이터베이스_오라클_부록(최종).indd C httpwwworaclecomdownloads DownloadsJavaJavaSE C1 5JDK JDKJavaDevelopmentKit Eclipse IDE JavaSEJavaSE7u55JDKDOWNLOAD JavaSEDevelopmentKitAcceptLicenseAgreement OS jdk7u55windowsi586exe7u55 version7update55windowsosi586os

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

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

Copyright 2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A..,,. Sun. Sun. Berkeley BSD. UNIX X/Open Company, Ltd.. Sun, Su

Copyright 2004 Sun Microsystems, Inc Network Circle, Santa Clara, CA U.S.A..,,. Sun. Sun. Berkeley BSD. UNIX X/Open Company, Ltd.. Sun, Su Java Desktop System 2 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. : 817 7757 10 2004 9 Copyright 2004 Sun Microsystems, Inc. 4150 Network Circle, Santa Clara, CA 95054 U.S.A..,,.

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

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

Microsoft PowerPoint - comp_prac_081223_2.pptx

Microsoft PowerPoint - comp_prac_081223_2.pptx Computer Programming Practice (2008 Winter) Practice 2 기본 Unix/Linux 명령어숙지 2008. 12. 23 Contents Linux commands Basic commands File and Directory User Data Filtering Process Etc Conclusion & Recommended

More information

LXR 설치 및 사용법.doc

LXR 설치 및 사용법.doc Installation of LXR (Linux Cross-Reference) for Source Code Reference Code Reference LXR : 2002512( ), : 1/1 1 3 2 LXR 3 21 LXR 3 22 LXR 221 LXR 3 222 LXR 3 3 23 LXR lxrconf 4 24 241 httpdconf 6 242 htaccess

More information

最即時的Sybase ASE Server資料庫診斷工具

最即時的Sybase ASE Server資料庫診斷工具 TOAD 9.5 Toad Oracle 料 SQL 料 行 理 SQLprofile Quest Software 了 Oracle -Toad Tools of Oracle Application Developers Toad 了 DBA DBA 理 易 度 Toad 料 SQL PL/SQL Toad Oracle PL/SQL Toad Schema Browser Schema Browser

More information

Sena Technologies, Inc. HelloDevice Super 1.1.0

Sena Technologies, Inc. HelloDevice Super 1.1.0 HelloDevice Super 110 Copyright 1998-2005, All rights reserved HelloDevice 210 ()137-130 Tel: (02) 573-5422 Fax: (02) 573-7710 E-Mail: support@senacom Website: http://wwwsenacom Revision history Revision

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

More information

13주-14주proc.PDF

13주-14주proc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

화판_미용성형시술 정보집.0305

화판_미용성형시술 정보집.0305 CONTENTS 05/ 07/ 09/ 12/ 12/ 13/ 15 30 36 45 55 59 61 62 64 check list 9 10 11 12 13 15 31 37 46 56 60 62 63 65 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

More information

PowerPoint Presentation

PowerPoint Presentation Hyperledger Fabric 개발환경구축및예제 Intelligent Networking Lab Outline 2/64 개발환경구축 1. Docker installation 2. Golang installation 3. Node.Js installation(lts) 4. Git besh installation 예제 1. Building My First Network

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

Pacemaker/Corosync 클러스터에서 GFS2구성

Pacemaker/Corosync 클러스터에서 GFS2구성 2019/07/09 23:42 1/2 Pacemaker/Corosync 클러스터에서 GFS2 구성 목차 Pacemaker/Corosync 클러스터에서 GFS2구성... 1 작업개요... 1 구성환경... 1 패키지설치... 2 Clustered Locking LVM사용... 2 DLM 및 CLVMD 클러스터리소스작성... 3 리소스순서및코로케이션... 4 LVM

More information

solution map_....

solution map_.... SOLUTION BROCHURE RELIABLE STORAGE SOLUTIONS ETERNUS FOR RELIABILITY AND AVAILABILITY PROTECT YOUR DATA AND SUPPORT BUSINESS FLEXIBILITY WITH FUJITSU STORAGE SOLUTIONS kr.fujitsu.com INDEX 1. Storage System

More information

MS-SQL SERVER 대비 기능

MS-SQL SERVER 대비 기능 Business! ORACLE MS - SQL ORACLE MS - SQL Clustering A-Z A-F G-L M-R S-Z T-Z Microsoft EE : Works for benchmarks only CREATE VIEW Customers AS SELECT * FROM Server1.TableOwner.Customers_33 UNION ALL SELECT

More information

K7VT2_QIG_v3

K7VT2_QIG_v3 1......... 2 3..\ 4 5 [R] : Enter Raid setup utility 6 Press[A]keytocreateRAID RAID Type: JBOD RAID 0 RAID 1: 2 7 " RAID 0 Auto Create Manual Create: 2 RAID 0 Block Size: 16K 32K

More information

라즈베리파이 프로그래밍_130912(최종).indd

라즈베리파이 프로그래밍_130912(최종).indd 파이썬으로 시작하는 라즈베리 파이 프로그래밍 Programming the Raspberry Pi Getting Started with Python Programming the Raspberry Pi: Getting Started with Python, 1st Edition. Korean Language Edition Copyright 2013 by McGraw-Hill

More information

FD¾ØÅÍÇÁ¶óÀÌÁî(Àå¹Ù²Þ)-ÀÛ¾÷Áß

FD¾ØÅÍÇÁ¶óÀÌÁî(Àå¹Ù²Þ)-ÀÛ¾÷Áß Copyright (c) 1999-2002 FINAL DATA INC. All right reserved Table of Contents 6 Enterprise for Windows 7 8 Enterprise for Windows 10 Enterprise for Windows 11 12 Enterprise for Windows 13 14 Enterprise

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

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

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

슬라이드 1

슬라이드 1 사례를통해본 ORACLE MAA (Maximum Availability Architecture) 2013. 02. Seungtaek Lee( 放浪 DBA) ORACLE MAA 최고의가용성을보장하기위해 Oracle( 사 ) 의여러솔루션을조합한 Oracle 권고아키텍처 2 ORACLE DB HA Solution Set RAC, Data Guard(ADG), ASM,

More information

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5]

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5] The Asian Journal of TEX, Volume 3, No. 1, June 2009 Article revision 2009/5/7 KTS THE KOREAN TEX SOCIETY SINCE 2007 2008 ko.tex Installing TEX Live 2008 and ko.tex under Ubuntu Linux Kihwang Lee * kihwang.lee@ktug.or.kr

More information

01Àå

01Àå CHAPTER 01 1 Fedora Fedora Linux Toolbox 2003 Fedora Core( ) http://fedoraproject.org www.redhat.com 2 CHAPTER Fedora RHEL GNU public license www.centos.org www.yellowdoglinux.com www. lineox.net www.

More information

USER GUIDE

USER GUIDE Solution Package Volume II DATABASE MIGRATION 2010. 1. 9. U.Tu System 1 U.Tu System SeeMAGMA SYSTEM 차 례 1. INPUT & OUTPUT DATABASE LAYOUT...2 2. IPO 중 VB DATA DEFINE 자동작성...4 3. DATABASE UNLOAD...6 4.

More information

Oracle Database Appliance X5-2 Customer Presentation

Oracle Database Appliance X5-2 Customer Presentation 12c MGMTDB(GIMR) 소개및구성가이드 2018. 8 김종인 Agenda 1. MGMTDB(GIMR) 이란? 2. GIMR Toploogy 3. GIMR 환경 4. GIMR tools 12c GIMR (Grid Infrastructure Management Repository)) MGMT 란무엇인가? - Management Repository 는 Oracle

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Install the PDI on CentOS 2013.04 G L O B E P O I N T 1 Ⅰ linux 구성 II Pentaho Install 2013, Globepoint Inc. All Rights Reserved. 2 I. Linux 구성 2013, Globepoint Inc. All Rights Reserved. 3 IP 설정 1. 설정파일

More information

DE1-SoC Board

DE1-SoC Board 실습 1 개발환경 DE1-SoC Board Design Tools - Installation Download & Install Quartus Prime Lite Edition http://www.altera.com/ Quartus Prime (includes Nios II EDS) Nios II Embedded Design Suite (EDS) is automatically

More information

<30362E20C6EDC1FD2DB0EDBFB5B4EBB4D420BCF6C1A42E687770>

<30362E20C6EDC1FD2DB0EDBFB5B4EBB4D420BCF6C1A42E687770> 327 Journal of The Korea Institute of Information Security & Cryptology ISSN 1598-3986(Print) VOL.24, NO.2, Apr. 2014 ISSN 2288-2715(Online) http://dx.doi.org/10.13089/jkiisc.2014.24.2.327 개인정보 DB 암호화

More information

Social Network

Social Network Social Network Service, Social Network Service Social Network Social Network Service from Digital Marketing Internet Media : SNS Market report A social network service is a social software specially focused

More information

User's Guide Manual

User's Guide Manual 1. 롯데 통합구매 시스템 사용자 매뉴얼 (공급사용) 2006.01-1 - 문서 이력(Revision History) Date Version Description Author(s) 2006/01 V1.0 사용자 매뉴얼 - 공급사용 롯데CFD 주) 이 사용자 안내서의 내용과 롯데 통합구매 시스템은 저작권법과 컴퓨터 프로그램 보호법으로 보호 받고 있으며, 롯데CFD의

More information

BMC CONTROL-M Overview & Demonstration

BMC CONTROL-M Overview & Demonstration BMC Workload Automation for 서버계획정지 ( IPL) Automation 발표자 : Sr. Software Consulting 김천재 얼마나자주시스템 Restart 하십니까? 2 Copyright 9/13/2013 BMC Software, Inc Copyright 9/13/2013 BMC Software, Inc 2 Restart 하실때,

More information

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

MAX+plus II Getting Started - 무작정따라하기

MAX+plus II Getting Started - 무작정따라하기 무작정 따라하기 2001 10 4 / Version 20-2 0 MAX+plus II Digital, Schematic Capture MAX+plus II, IC, CPLD FPGA (Logic) ALTERA PLD FLEX10K Series EPF10K10QC208-4 MAX+plus II Project, Schematic, Design Compilation,

More information

Microsoft Word - 10g RAC on Win2k.doc

Microsoft Word - 10g RAC on Win2k.doc 10g RAC on Win2K Document Control Date Author Change References 2006-03-30 신종근 초기작성함 1-1 ** Agenda 1. 작업목적 Down-Time 최소화!! 2. Pre-Install 환경 3. CRS Install 4. DBMS S/W Install 5. 9i 10g Upgrade 6. 문제점및주의사항

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

SRC PLUS 제어기 MANUAL

SRC PLUS 제어기 MANUAL ,,,, DE FIN E I N T R E A L L O C E N D SU B E N D S U B M O TIO

More information

Mango220 Android How to compile and Transfer image to Target

Mango220 Android How to compile and Transfer image to Target Mango220 Android How to compile and Transfer image to Target http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys

More information

SMB_ICMP_UDP(huichang).PDF

SMB_ICMP_UDP(huichang).PDF SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request

More information

Chapter 1

Chapter 1 3 Oracle 설치 Objectives Download Oracle 11g Release 2 Install Oracle 11g Release 2 Download Oracle SQL Developer 4.0.3 Install Oracle SQL Developer 4.0.3 Create a database connection 2 Download Oracle 11g

More information

10X56_NWG_KOR.indd

10X56_NWG_KOR.indd 디지털 프로젝터 X56 네트워크 가이드 이 제품을 구입해 주셔서 감사합니다. 본 설명서는 네트워크 기능 만을 설명하기 위한 것입니다. 본 제품을 올바르게 사 용하려면 이 취급절명저와 본 제품의 다른 취급절명저를 참조하시기 바랍니다. 중요한 주의사항 이 제품을 사용하기 전에 먼저 이 제품에 대한 모든 설명서를 잘 읽어 보십시오. 읽은 뒤에는 나중에 필요할 때

More information

PRO1_02E [읽기 전용]

PRO1_02E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_02E1 Information and 2 STEP 7 3 4 5 6 STEP 7 7 / 8 9 10 S7 11 IS7 12 STEP 7 13 STEP 7 14 15 : 16 : S7 17 : S7 18 : CPU 19 1 OB1 FB21 I10 I11 Q40 Siemens AG

More information

thesis

thesis CORBA TMN Surveillance System DPNM Lab, GSIT, POSTECH Email: mnd@postech.ac.kr Contents Motivation & Goal Related Work CORBA TMN Surveillance System Implementation Conclusion & Future Work 2 Motivation

More information

untitled

untitled (shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,

More information

Intra_DW_Ch4.PDF

Intra_DW_Ch4.PDF The Intranet Data Warehouse Richard Tanler Ch4 : Online Analytic Processing: From Data To Information 2000. 4. 14 All rights reserved OLAP OLAP OLAP OLAP OLAP OLAP is a label, rather than a technology

More information

Windows Server 8

Windows Server 8 Windows Server 8 Configuring a Highly Available iscsi Target 본문서에서는, 공유저장소를사용하여클러스터를구축하고, 구축된클러스터에 iscsi high-availability 인스턴스를생성합니다. 이러한환경에서, 클러스터 failover 동안에어플리케이션 IO 가중단없이지속적으로사용가능한지확인합니다. 이동철부장 2012-03-05

More information

chapter4

chapter4 Basic Netw rk 1. ก ก ก 2. 3. ก ก 4. ก 2 1. 2. 3. 4. ก 5. ก 6. ก ก 7. ก 3 ก ก ก ก (Mainframe) ก ก ก ก (Terminal) ก ก ก ก ก ก ก ก 4 ก (Dumb Terminal) ก ก ก ก Mainframe ก CPU ก ก ก ก 5 ก ก ก ก ก ก ก ก ก ก

More information

OPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block

More information

세미나(장애와복구-수강생용).ppt

세미나(장애와복구-수강생용).ppt DB PLAN Consultant jina6678@yahoo.co.kr 011-864-1858 - - 1. 2. DB 3. - 4. - 5. 6. 1 INSTANCE MMAN RECO RFS MRP ORBn RBAL MMON Dnnn Snnn Data Buffer Cache SGA Stream Pool Shared pool Large Pool PGA Log

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

목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시 주의사항... 5 2.2 설치 권고 사양... 5 2.3 프로그램 설치... 6 2.4 하드웨

목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시 주의사항... 5 2.2 설치 권고 사양... 5 2.3 프로그램 설치... 6 2.4 하드웨 최종 수정일: 2010.01.15 inexio 적외선 터치스크린 사용 설명서 [Notes] 본 매뉴얼의 정보는 예고 없이 변경될 수 있으며 사용된 이미지가 실제와 다를 수 있습니다. 1 목차 제 1 장 inexio Touch Driver소개... 3 1.1 소개 및 주요 기능... 3 1.2 제품사양... 4 제 2 장 설치 및 실행... 5 2.1 설치 시

More information

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

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including any operat Sun Server X3-2( Sun Fire X4170 M3) Oracle Solaris : E35482 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,,,,,,,,,,,,,.,..., U.S. GOVERNMENT END USERS. Oracle programs, including

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

목차 1. 시스템구성 개요 정의 목적 환경 준비사항 Oracle Install configuration Xshell 에

목차 1. 시스템구성 개요 정의 목적 환경 준비사항 Oracle Install configuration Xshell 에 Oracle Database 8i R1 Installation Guide for RHEL3(x86) Writer : 이경호 목차 1. 시스템구성... - 2-1.1. 개요... - 2-1.1.1. 정의... - 2-1.1.2. 목적... - 2-1.1.3. 환경... - 2-2. 준비사항... - 2-3. Oracle Install configuration...

More information

歯815설치1.PDF

歯815설치1.PDF 1 Memory Swap Space Disk Drives 128 MB (JAVA VM 256MB ) RAM 3 (1GB ) 2 22 2GB 1 4 Oracle Software, 3 DB CD-ROM Drive LINUX CD-ROM Oracle8i Enterprise Edition Oracle8i Client Programmer/2000 Minimal 693MB

More information

DW 개요.PDF

DW 개요.PDF Data Warehouse Hammersoftkorea BI Group / DW / 1960 1970 1980 1990 2000 Automating Informating Source : Kelly, The Data Warehousing : The Route to Mass Customization, 1996. -,, Data .,.., /. ...,.,,,.

More information

Data Guard 기본개념.doc

Data Guard 기본개념.doc Data Guard 개념 (9i R2 9.2.0.1) 김형일 HIKIM000@EMPAL.COM 1 목차 1. DataGuard 개념 3 1.1 Data Guard Architecture 3 1.2 DataGuard 장점 4 1.3 Switch over and Failover 5 1.4 Physical Standby 와 Logical Standby 5 2. Data

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

CPX-E-EC_BES_C_ _ k1

CPX-E-EC_BES_C_ _ k1 CPX-E CPX-E-EC EtherCAT 8071155 2017-07 [8075310] CPX-E-EC CPX-E-EC-KO EtherCAT, TwinCAT (). :, 2 Festo CPX-E-EC-KO 2017-07 CPX-E-EC 1... 4 1.1... 4 1.2... 4 1.3... 4 1.4... 5 1.5... 5 2... 6 2.1... 6

More information

디지털포렌식학회 논문양식

디지털포렌식학회 논문양식 ISSN : 1976-5304 http://www.kdfs.or.kr Virtual Online Game(VOG) 환경에서의 디지털 증거수집 방법 연구 이 흥 복, 정 관 모, 김 선 영 * 대전지방경찰청 Evidence Collection Process According to the Way VOG Configuration Heung-Bok Lee, Kwan-Mo

More information

Microsoft PowerPoint - Smart CRM v4.0_TM 소개_20160320.pptx

Microsoft PowerPoint - Smart CRM v4.0_TM 소개_20160320.pptx (보험TM) 소개서 2015.12 대표전화 : 070 ) 7405 1700 팩스 : 02 ) 6012 1784 홈 페이지 : http://www.itfact.co.kr 목 차 01. Framework 02. Application 03. 회사 소개 01. Framework 1) Architecture Server Framework Client Framework

More information

<31325FB1E8B0E6BCBA2E687770>

<31325FB1E8B0E6BCBA2E687770> 88 / 한국전산유체공학회지 제15권, 제1호, pp.88-94, 2010. 3 관내 유동 해석을 위한 웹기반 자바 프로그램 개발 김 경 성, 1 박 종 천 *2 DEVELOPMENT OF WEB-BASED JAVA PROGRAM FOR NUMERICAL ANALYSIS OF PIPE FLOW K.S. Kim 1 and J.C. Park *2 In general,

More information

Tablespace On-Offline 테이블스페이스 온라인/오프라인

Tablespace On-Offline 테이블스페이스 온라인/오프라인 2018/11/10 12:06 1/2 Tablespace On-Offline 테이블스페이스온라인 / 오프라인 목차 Tablespace On-Offline 테이블스페이스온라인 / 오프라인... 1 일반테이블스페이스 (TABLESPACE)... 1 일반테이블스페이스생성하기... 1 테이블스페이스조회하기... 1 테이블스페이스에데이터파일 (DATA FILE) 추가

More information

MySQL-Ch05

MySQL-Ch05 MySQL P A R T 2 Chapter 05 Chapter 06 Chapter 07 Chapter 08 05 Chapter MySQL MySQL. (, C, Perl, PHP),. 5.1 MySQL., mysqldump, mysqlimport, mysqladmin, mysql. MySQL. mysql,. SQL. MySQL... MySQL ( ). MySQL,.

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

Advanced Product Service

Advanced Product Service Advanced Oracle Document CONVERT to ASM and Non-ASM Author: Hyun-Ho, Jung Site: http://www.commit.co.kr Email: admin@commit.co.kr cleanto@naver.com Creation Date: 2011-12 - 13 CONVERT to ASM and Non-ASM

More information

PowerPoint Presentation

PowerPoint Presentation Server I/O utilization System I/O utilization V$FILESTAT V$DATAFILE Data files Statspack Performance tools TABLESPACE FILE_NAME PHYRDS PHYBLKRD READTIM PHYWRTS PHYBLKWRT WRITETIM ------------- -----------------------

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) 상표 Microsoft, Windows 및 Internet Explorer는 미국 및 / 또는 다른 국가에서 Microsoft Corporation 의 등록 상표입 Intel 및 Intel Core

More information

untitled

untitled GUI Programming in Embedded Linux Embedded System Lab. II GUI 1:1 Embedded System Lab. II 2 Qt QT trolltech cross GUI QT ( ),, Mac, Linux, *nix C++ Qt X11 C++ GUI. (, ). Qt. Embedded System Lab. II 3 Qt/Embedded

More information

MPLAB C18 C

MPLAB C18 C MPLAB C18 C MPLAB C18 MPLAB C18 C MPLAB C18 C #define START, c:\mcc18 errorlevel{0 1} char isascii(char ch); list[list_optioin,list_option] OK, Cancel , MPLAB IDE User s Guide MPLAB C18 C

More information

제 목

제 목 Print Date: 2010-12-29 Oracle RAC (TAF, CTF 테스트시나리오 DATE : 2010-12-29 03:10 Writer : 박상수 License : 개인자료 CALMMASS.TISTORY.COM - 본문서는모든사람에게열람및수정모두가능합니다 버전수정일작성자변경내역 1.0 2010/12/28 박상수 TAF, CTF 개요 1.5 2010/12/29

More information