프린트 하기

OS환경 : Oracle Linux 6.8 (64bit)


DB 환경 : Oracle Database 11.2.0.4


에러 : [INS-30515] Insufficient space available in the selected disks.

디스크 셋팅후 silent mode로 grid 설치 중 아래 에러 발생

1
2
3
4
5
6
7
8
9
10
11
[oracle@asmdb01 grid]$ ./runInstaller -silent -ignorePrereq -showProgress -responseFile /app/engine/grid/response/grid_install.rsp
Starting Oracle Universal Installer...
 
Checking Temp space: must be greater than 120 MB.   Actual 23279 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 8155 MB    Passed
Preparing to launch Oracle Universal Installer from /TEMP/OraInstall2019-09-05_03-04-36PM. Please wait ...
[FATAL] [INS-30515] Insufficient space available in the selected disks.
   CAUSE: Insufficient space available in the selected Disks. At least, 1,773 MB of free space is required.
   ACTION: Choose additional disks such that the total size should be at least 1,773 MB.
A log of this session is currently saved as: /TEMP/OraInstall2019-09-05_03-04-36PM/installActions2019-09-05_03-04-36PM.log. 
Oracle recommends that if you want to keep this log, you should move it from the temporary location to a more permanent location.
cs



해결 방법 : 디스크 용량을 확인해주거나 response file에 잘못 작성한 부분을 체크한다

grid를 설치할 디스크 여유 용량 확인(/app)

1
2
3
4
5
6
7
8
9
10
11
[oracle@asmdb01 ~]$ df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2        10G  3.6G  6.5G  36/
devtmpfs        2.0G     0  2.0G   0/dev
tmpfs           2.0G  115M  1.9G   6/dev/shm
tmpfs           2.0G   26M  2.0G   2/run
tmpfs           2.0G     0  2.0G   0/sys/fs/cgroup
/dev/sda1        31G   13G   19G  42/app
/dev/sda3      1020M   33M  988M   4/tmp
tmpfs           396M   12K  396M   1/run/user/42
tmpfs           396M     0  396M   0/run/user/0

/app 디렉토리에 grid를 설치하는데 용량이 충분함


response file 확인

1
2
3
4
5
6
7
8
9
10
11
12
[oracle@asmdb01 grid]$ vi /app/engine/grid/response/grid_install.rsp
 
#-------------------------------------------------------------------------------
# Redundancy level to be used by ASM.
# It can be one of the following
#   - NORMAL
#   - HIGH
#   - EXTERNAL
# Example: oracle.install.asm.diskGroup.redundancy=NORMAL
#
#-------------------------------------------------------------------------------
oracle.install.asm.diskGroup.redundancy=NORMAL

oracle.install.asm.diskGroup.redundancy 의 값을 NORMAL로 설정되어 있어 발생한 문제


값을 EXTERNAL 로 변경(디스크 구성에 따라 선택)

1
2
3
4
5
6
7
8
9
10
11
12
[oracle@asmdb01 grid]$ vi /app/engine/grid/response/grid_install.rsp
 
#-------------------------------------------------------------------------------
# Redundancy level to be used by ASM.
# It can be one of the following
#   - NORMAL
#   - HIGH
#   - EXTERNAL
# Example: oracle.install.asm.diskGroup.redundancy=NORMAL
#
#-------------------------------------------------------------------------------
oracle.install.asm.diskGroup.redundancy=EXTERNAL


원인 : 디스크 공간 부족



참조 :