Oracle Database 23ai Free RPM Installation On Oracle Linux 9 (OL9)
This article describes the RPM installation of Oracle Database 23ai Free 64-bit on Oracle Linux 9 (OL9) 64-bit.
oracle 23configurationintermediate
by OracleDba
12 views
This article describes the RPM installation of Oracle Database 23ai Free 64-bit on Oracle Linux 9 (OL9) 64-bit.
123456
<IP-address> <fully-qualified-machine-name> <machine-name>
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
192.168.56.107 ol9-23.localdomain ol9-23
ol9-23.localdomain123
dnf install -y oracle-database-preinstall-23ai
dnf -y localinstall /tmp/oracle-database-free-23ai-1.0-1.el9.x86_64.rpm1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
#
export DB_PASSWORD=SysPassword1
#
(echo "${DB_PASSWORD}"; echo "${DB_PASSWORD}";) | /etc/init.d/oracle-free-23ai configure
Specify a password to be used for database accounts. Oracle recommends that the password entered should be at least 8 characters in length, contain at least 1 uppercase character, 1 lower case character and 1 digit [0-9]. Note that the same password will be used for SYS, SYSTEM and PDBADMIN accounts:
Confirm the password:
Configuring Oracle Listener.
Listener configuration succeeded.
Configuring Oracle Database FREE.
Enter SYS user password:
*************
Enter SYSTEM user password:
**************
Enter PDBADMIN User Password:
************
Prepare for db operation
7% complete
Copying database files
29% complete
Creating and starting Oracle instance
30% complete
33% complete
36% complete
39% complete
43% complete
Completing Database Creation
47% complete
49% complete
50% complete
Creating Pluggable Databases
54% complete
71% complete
Executing Post Configuration Actions
93% complete
Running Custom Scripts
100% complete
Database creation complete. For details check the logfiles at:
/opt/oracle/cfgtoollogs/dbca/FREE.
Database Information:
Global Database Name:FREE
System Identifier(SID):FREE
Look at the log file "/opt/oracle/cfgtoollogs/dbca/FREE/FREE.log" for further details.
Connect to Oracle Database using one of the connect strings:
Pluggable database: localhost.localdomain/FREEPDB1
Multitenant container database: localhost.localdomain
[root@localhost yum.repos.d]#1234567891011
export ORACLE_HOME=/opt/oracle/product/23ai/dbhomeFree
export PATH=$ORACLE_HOME/bin:$PATH
-- Root container
sqlplus sys/SysPassword1@//localhost:1521/free as sysdba
-- Pluggable database
sqlplus sys/SysPassword1@//localhost:1521/freepdb1 as sysdba
/etc/init.d/oracle-free-23ai stop
/etc/init.d/oracle-free-23ai startPlease to add comments
No comments yet. Be the first to comment!