##
Rocky Linux 9.3 安装Oracle 19.23
习惯了用Rocky Linux来安装PostgreSQL和MySQL,有个新项目要测试,也尝试用Rocky Linux来安装Oracle,想着4月的补丁刚发布,就回顾了一下打补丁,当然单实例打补丁没啥可说的。安装也没有遇到什么问题,从Install文档查了下,也是有着高度兼容性。等我有时间,也要把Oracle复习下。
1、系统信息
[oracle@oradb:/home/oracle]$cat /etc/redhat-release
Rocky Linux release 9.3 (Blue Onyx)
[oracle@oradb:/home/oracle]$uname -a
Linux oradb 5.14.0-362.24.1.el9_3.0.1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Apr 4 22:31:43 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
2、补丁信息
[oracle@oradb:/home/oracle]$opatch lspatches
36199232;OJVM RELEASE UPDATE: 19.23.0.0.240416 (36199232)
36233263;Database Release Update : 19.23.0.0.240416 (36233263)
29585399;OCW RELEASE UPDATE 19.3.0.0.0 (29585399)
OPatch succeeded.
3、数据库信息
[oracle@oradb:/home/oracle]$sqlplus "/as sysdba"
SQL*Plus: Release 19.0.0.0.0 - Production on Sun Apr 21 21:04:36 2024
Version 19.23.0.0.0
Copyright (c) 1982, 2023, Oracle. All rights reserved.
Connected to:
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.23.0.0.0
SQL> select banner_full from v$version;
BANNER_FULL
--------------------------------------------------------------------------------
Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production
Version 19.23.0.0.0
SQL> select name,log_mode,open_mode,platform_name,db_unique_name from v$database;
NAME LOG_MODE OPEN_MODE PLATFORM_NAME DB_UNIQUE_NAME
------------------ ------------------------ -------------------- ------------------------------ --------------------
ORADB NOARCHIVELOG READ WRITE Linux x86 64-bit oradb
SQL>