Admin/admin

asmtool을 사용하여 ASM구성하기

Qhtlr 2008. 8. 21. 15:35

DBCA를 통해 ASM구성

1. 명령창을 열고, ASM 인스턴스를 종료시킨 후, pfile을 생성합니다.

C:\>set oracle_sid=+asm
C:\>sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on 토 5월 24 14:10:36 2008
Copyright (c) 1982, 2005, Oracle.  All rights reserved.

다음에 접속됨:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL> shutdown abort
ASM 인스턴스가 종료되었습니다.
SQL> create pfile from spfile;
파일이 생성되었습니다.
SQL>

2. pfile을 열고, 다음 파라메터를 추가합니다.
*._asm_allow_only_raw_disks=false

3. 파일을 저장하고 ASM 인스턴스를 nomount단계로 시작
SQL> create spfile from pfile ;
파일이 생성되었습니다.

SQL> startup nomount ;
ASM 인스턴스가 시작되었습니다.
Total System Global Area   83886080 bytes
Fixed Size                  1247420 bytes
Variable Size              57472836 bytes
ASM Cache                  25165824 bytes

SQL> show parameter asm

NAME                                 TYPE                   VALUE
------------------------------------ ---------------------- -----------------------------------
_asm_allow_only_raw_disks            boolean                FALSE
asm_diskgroups                       string
asm_diskstring                       string                 C:\oracle\ora10gR2\oradata\raw\raw*
asm_power_limit                      integer                1


4. asm_diskstring 을 raw파일을 생성한 파일들로 지정 -- C:\oracle\ora10gR2\oradata\raw\raw*
5. DISKGROUP 추가

출처 : Oracle 10g asmtool을 이용하여 ASM 모의하기