Minimal Viable Oracle Database 19c Installation on Oracle Linux 8 (OL8)
This article gives the least steps necessary to get a working Oracle 9c database on Oracle Linux 8 (OL8).
oracle 19cconfigurationintermediate
by OracleDba
12 views
This article gives the least steps necessary to get a working Oracle 9c database on Oracle Linux 8 (OL8).
12345678910
cd /tmp
# Prerequisites.
sudo dnf install -y oracle-database-preinstall-19c
# Oracle software installation.
sudo dnf localinstall -y /tmp/oracle-database-ee-19c-1.0-1.x86_64.rpm
# Create a database.
sudo /etc/init.d/oracledb_ORCLCDB-19c configure12345678910111213141516
# Switch to the "oracle" user.
sudo su - oracle
# Set up your environment.
export ORACLE_HOME=/opt/oracle/product/19c/dbhome_1
export PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_SID=ORCLCDB
sqlplus / as sysdba <<EOF
alter session set container=ORCLPDB1;
create user testuser1 identified by testuser1 quota unlimited on users;
grant connect, resource to testuser1;
exit;
EOF123456789
sqlplus testuser1/testuser1@//localhost:1521/ORCLPDB1
sql testuser1/testuser1@//localhost:1521/ORCLPDB1
Username: testuser1
Password: testuser1
Host : {hostname of server running the database. "localhost" if you are on the machine}
Port : 1521
Service : ORCLPDB1Please to add comments
No comments yet. Be the first to comment!