[Oracle] 오라클 19c 설치...

prana·2024년 10월 20일
0

ORACLE

목록 보기
30/96
post-thumbnail

OCI 오라클 클라우드에 서버 하나 만들고....
oracle 공홈에서 확인해서 다운 받았는데 .exe 파일로 떨어져서 아닌데.... 싶어서 일단

  • 19c 설치 .rpm에서 다운 받기로 했다.
  • 혹시 몰라 filezilla에도 접속해두었다. --> puttygen 통해서 private key를 .ppk 형식으로 바꿔주고 접속했다.
  1. filezilla에서 rpm 파일 업로드

  2. sudo rpm -ivh oracle-database-ee-19c-1.0-1.x86_64.rpm으로 설치 진행

  3. 설정 스크립트 실행: sudo /etc/init.d/oracledb_ORCLCDB-19c configure

[opc@instance-20241017-2246 ~]$ sudo /etc/init.d/oracledb_ORCLCDB-19c configure
Configuring Oracle Database ORCLCDB.
Prepare for db operation
8% complete
Copying database files
31% complete
Creating and starting Oracle instance
32% complete
36% complete
..
40% complete
43% complete
46% complete
Completing Database Creation
51% complete
54% complete
Creating Pluggable Databases
58% complete
77% complete
Executing Post Configuration Actions
100% complete
Database creation complete. For details check the logfiles at:
 /opt/oracle/cfgtoollogs/dbca/ORCLCDB.
Database Information:
Global Database Name:ORCLCDB
System Identifier(SID):ORCLCDB
Look at the log file "/opt/oracle/cfgtoollogs/dbca/ORCLCDB/ORCLCDB.log" for further details.

Database configuration completed successfully. The passwords were auto generated, you must change them by connecting to the database using 'sqlplus / as sysdba' as the oracle user.
...
  1. oracle 사용자로 전환: sudo su - oracle
  1. 환경변수 설정
export ORACLE_HOME=/opt/oracle/product/19c/dbhome_1
export PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_SID=ORCLCDB

5-1. 매번 환경변수를 입력하기 번거롭다면,

echo "export ORACLE_HOME=/opt/oracle/product/19c/dbhome_1" >> ~/.bash_profile
echo "export PATH=\$ORACLE_HOME/bin:\$PATH" >> ~/.bash_profile
echo "export ORACLE_SID=ORCLCDB" >> ~/.bash_profile
source ~/.bash_profile
  1. sqlplus 접속 : sqlplus / as sysdba
[oracle@instance-20241017-2246 ~]$ sqlplus / as sysdba

SQL*Plus: Release 19.0.0.0.0 - Production on Sun Oct 20 04:00:06 2024
Version 19.3.0.0.0

Copyright (c) 1982, 2019, Oracle.  All rights reserved.


Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.3.0.0.0
  1. 비밀번호 재설정
ALTER USER SYS IDENTIFIED BY 새로운비밀번호;
ALTER USER SYSTEM IDENTIFIED BY 새로운비밀번호;

-- 버전 확인

SQL> select * from v$version;

BANNER
--------------------------------------------------------------------------------
BANNER_FULL
--------------------------------------------------------------------------------
BANNER_LEGACY
--------------------------------------------------------------------------------
    CON_ID
----------
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.3.0.0.0
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production

0개의 댓글