Posts

Showing posts from January, 2021

Implement Oracle TDE and TNS TLS in Oracle 19c running in a Docker Container

Image
  In this article, I share with you implement Oracle TDE and TNS SSL in an Oracle 19.9.0.0 database running as a Docker Container. You can view the accompanying the video at https://youtu.be/RR0rG0QOkgI. I have a Docker network oracledb that I use for the Oracle Database.  [oracle@dockerhost dockerOracle19c]$ cat createNetwork.sh docker network create \   --driver=bridge \   --subnet=172.19.0.0/16 \   --ip-range=172.19.5.0/24 \   --gateway=172.19.5.254 \   oracledb Here is the startup script for the Oracle container. [oracle@dockerhost dockerOracle19c]$ cat startOracleKind.sh docker stop oracle19c docker run -dt --network=oracledb --name oracle19c --hostname dockerdb --user oracle --ip 172.19.5.10 \ -p 192.168.1.45:1521:1521 -p 192.168.1.45:5500:5500 \ -e ORACLE_SID=KIND \ -e ORACLE_PDB=KINDPDB \ -v /oradrive/oradata/KIND/network/admin:/opt/oracle/product/19c/dbhome_1/network/admin \ -v /oradrive/oradata/KIND/dbs:/opt/oracle/product/19c/dbhome_1/...