내맘대로긍정이 알려주는
Oracle 23ai 신기능
무료 세미나 발표자료
다운로드
trending_flat
OS 환경 : Oracle Linux 8.4 (64bit)
DB 환경 : Oracle Database 23.5.0.24.07 ai for Oracle Cloud and Engineered Systems
에러 : ORA-27350: This version of the Oracle Database software cannot be run on this platform.
논엑사 db서버에 엑사용 23ai db를 dbca로 설치하려할때 발생하는 에러
해결 방법 : 설치 스크립트가 있는 디렉토리로 가서 init.ora에 히든파라미터 추가
설치 스크립트의 파라미터파일에 히든파라미터를 추가하여 해결 가능함
Generate database creation scripts 저장했던 경로로 이동
1
2
3
4
|
$ cd /app/oracle/admin/oracle23/scripts/
$ ls
CreateClustDBViews.sql CreateDBFiles.sql init.ora oracle23.sh PDBCreation.sql postDBCreation.sql
CreateDBCatalog.sql CreateDB.sql lockAccount.sql oracle23.sql plug_oracle23pdb1.sql postPDBCreation_oracle23pdb1.sql
|
init.ora 파일 vi 로 열어서 최하단에 히든파라미터 추가
1
2
|
$ vi init.ora
_exadata_feature_on=true
|
oracle23.sh 파일 실행
1
|
$ sh oracle23.sh
|
정상적으로 db 설치됨
설치 후 db 확인
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$ sqlplus / as sysdba
SQL*Plus: Release 23.0.0.0.0 - for Oracle Cloud and Engineered Systems on Mon Aug 05 01:59:33 2024
Version 23.5.0.24.07
Copyright (c) 1982, 2024, Oracle. All rights reserved.
Connected to:
Oracle Database 23ai Enterprise Edition Release 23.0.0.0.0 - for Oracle Cloud and Engineered Systems
Version 23.5.0.24.07
SQL> select instance_name, version, status from v$instance;
INSTANCE_NAME VERSION STATUS
---------------- ----------------- ------------
oracle23 23.0.0.0.0 OPEN
|
원인 : 논엑사 db서버에 엑사용 23ai db를 dbca로 설치해서 발생한 문제
2024년 08월 기준 아직까지 온프레미스용 오라클 23ai EE 버전 다운로드가 불가하기 때문에
엑사용 버전을 다운받아 설치하다 보니 발생한 에러
본문처럼 히든파라미터를 추가하여 무시하고 설치 가능함
참조 :