Breadcrumb

Description

# Oracle Database 23ai (23.5.0.0) Free Container Image Documentation Oracle Database 23ai Free is the free edition of the industry-leading database. The Oracle Database 23ai Free Container Image contains Oracle Database 23ai (23.5.0.0) Free based on an Oracle Linux 8 base image. Two flavors of the image are supported: 1. The `Full` image: supports all the database features provided by Oracle Database 23ai Free. 2. The `Lite` image: smaller image size with a stripped-down installation of the database. The `Lite` image has a smaller storage footprint than the `Full` image (~80% image size reduction) and a substantial improvement in image pull time. This image is useful in CI/CD scenarios and for simpler use cases where advanced database features are not required. For more information on Oracle Database 23ai Free, see: [https://oracle.com/database/free](https://oracle.com/database/free) ## Using the Full image ### Starting an Oracle Database 23ai Free container The Oracle Database 23ai Free Container Image contains a pre-built database, so the **startup time is very fast**. Fast startup can be helpful in CI/CD scenarios. To start an Oracle Database Free container, run the following command where,`<oracle-db>` can be any custom name for the container: ``` podman run -d --name <oracle-db> container-registry.oracle.com/database/free:latest ``` When the container is started, a random password is generated for the `SYS, SYSTEM and PDBADMIN` users. This is termed the default password. #### Note: - Throughout this document, words enclosed within angle brackets `<` `>` indicate variables in code lines. - To change the default password, see: "*Changing the Default Password for SYS User*" - To learn about advanced use cases, see: "*Custom Configurations*" - This document uses `podman` as the prescribed container runtime, but using contemporary commands is also anticipated to work. - The Oracle Enterprise Manager Database Express (OEM DB Express) is no longer supported with Oracle Database 23ai Free. Please use [SQL Developer](https://www.oracle.com/database/sqldeveloper/) instead. The Oracle Database is ready to use when the `STATUS` field shows `(healthy)` in the `podman ps` output. ### Custom Configurations To facilitate custom configurations, the Oracle Database container provides configuration parameters that you can use when starting the container. For example, this is the detailed `podman run` command supporting all custom configurations: ``` podman run --name <container name> \ -P | -p <host port>:1521 \ -e ORACLE_PWD=<your database passwords> \ -e ORACLE_CHARACTERSET=<your character set> \ -e ENABLE_ARCHIVELOG=true \ -e ENABLE_FORCE_LOGGING=true \ -v [<host mount point>:]/opt/oracle/oradata \ container-registry.oracle.com/database/free:latest Parameters: --name: The name of the container (default: auto generated) -P | -p: The port mapping of the host port to the container port. Only one port is exposed: 1521 (Oracle Listener) -e ORACLE_PWD: The Oracle Database SYS, SYSTEM and PDB_ADMIN password (default: auto generated) -e ORACLE_CHARACTERSET: The character set to use when creating the database (default: AL32UTF8) -e ENABLE_ARCHIVELOG: To enable archive log mode when creating the database (default: true) -e ENABLE_FORCE_LOGGING: To enable force logging mode when creating the database (default: true) -v /opt/oracle/oradata The data volume to use for the database. Has to be writable by the Unix "oracle" (uid: 54321) user inside the container. If omitted the database will not be persisted over container recreation. -v /opt/oracle/scripts/startup Optional: A volume with custom scripts to be run after database startup. For further details see the "Running scripts after setup and on startup" section below. -v /opt/oracle/scripts/setup Optional: A volume with custom scripts to be run after database setup. For further details see the "Running scripts after setup and on startup" section below. ``` The supported configuration options are: - **ORACLE_CHARACTERSET:** This parameter modifies the character set of the database. This parameter is optional, and the default value is set to AL32UTF8. Please note that, this parameter will set the character set only when a new database is created i.e. a host system directory is mounted using -v option while running the image (Please refer to *Mounting Podman volume/host directory for database persistence* section). - **ORACLE_PWD:** This parameter modifies the password for the `SYS, SYSTEM and PDBADMIN` users. This parameter is optional, and the default value is randomly generated. Note: Using this option exposes the password as a container environment variable. Hence using Podman secrets as described below is recommended. - **Podman Secrets Support:** This option is supported only when **the Podman runtime is being used** to run the Oracle Database 23ai Free container image. Podman secrets is a secure mechanism of passing strings of text to the container, such as ssh-keys, or passwords. To specify the password for `SYS, SYSTEM and PDBADMIN` users securely, create a secret named `oracle_pwd` and a secret named `oracle_pwd_privkey` for the key to encrypt the password. The commands are as follows: - Generate the private and public key files ``` mkdir /opt/.secrets/ cd /opt/.secrets openssl genrsa -out key.pem openssl rsa -in key.pem -out key.pub -pubout ``` - Create a text file with the unencrypted password Seed password and saving the /opt/.secrets/pwdfile.txt ``` vi /opt/.secrets/pwdfile.txt ``` - Encrypt the password file using the public key generated above ``` openssl pkeyutl -in /opt/.secrets/pwdfile.txt -out /opt/.secrets/pwdfile.enc -pubin -inkey /opt/.secrets/key.pub -encrypt rm -rf /opt/.secrets/pwdfile.txt ``` - Create podman secrets for the encrypted passwords and the private key generated above ``` podman secret create oracle_pwd /opt/.secrets/pwdfile.enc podman secret create oracle_pwd_privkey /opt/.secrets/key.pem ``` - Pass the podman secrets to the container Pass the above created podman secrets `oracle_pwd` and `oracle_pwd_privkey` to the container with the `--secret` option ``` podman run --name <container_name> --secret=oracle_pwd --secret=oracle_pwd_privkey container-registry.oracle.com/database/free:latest ``` - **Mounting Podman volume/host directory for database persistence:** To obtain database persistence, either a named Podman volume or a host system directory can be mounted at the location `/opt/oracle/oradata` inside the container. The difference between these two options are as follows: 1. If a **Podman volume** is mounted on the `/opt/oracle/oradata` location, then the volume is prepopulated with the data files already present in the image. In this case, the startup will be very fast, similar to starting the image without mount. These data files exist in the image to enable quick startup of the database. To use a podman volume for the data volume, run the following: podman run -d --name <oracle-db> \ -v <OracleDBData>:/opt/oracle/oradata \ container-registry.oracle.com/database/free:latest 2. If a **host system directory** is mounted on the `/opt/oracle/oradata` location, two things can happen : - If the datafiles are present in the host system directory which is being mounted, then these files will overwrite the files present at `/opt/oracle/oradata` and the database startup will be very fast. - If host system directory doesn't contain the datafiles the data files present at `/opt/oracle/oradata` will be overwritten , and **a new database setup will begin**. It takes a significant amount of time (approximately 10 minutes) to set up a fresh database. To use a directory on the host system for the data volume, run the following: podman run -d --name <oracle-db> \ -v <writable_directory_path>:/opt/oracle/oradata \ container-registry.oracle.com/database/free:latest **Note:** Cleaning up a mounted host directory can be done by changing into the directory location and executing `rm -rf * .*` - **ENABLE\_ARCHIVELOG and/or ENABLE\_FORCE\_LOGGING:** These options are enabled by default in the prebuilt database image. To disable these options, execute the relevant SQL commands using SQLPlus from within the database container. ### Changing the Default Password for SYS User On the first startup of the container, a random password is generated for the database if a password is not provided by using the **-e option**, as described in the "*Custom Configurations*" section. To change the password for these accounts, use the `podman exec` command, to run the `setPassword.sh` script that is found in the container. Note that the container must be running before you run the script. For example: ``` podman exec <oracle-db> ./setPassword.sh <your_password> ``` ### Database Alert Logs You can access the database alert log by using the following command, where `<oracle-db>` is the name of the container: ``` podman logs <oracle-db> ``` ### Connecting to the Oracle Database Free Container After the Oracle Database indicates that the container has started, and the `STATUS` field shows `(healthy),` client applications can connect to the database. ### Connecting from Within the Container You can connect to the Oracle Database by running a SQL\*Plus command from within the container using one of the following commands: ``` podman exec -it <oracle-db> sqlplus sys/<your_password>@FREE as sysdba podman exec -it <oracle-db> sqlplus system/<your_password>@FREE podman exec -it <oracle-db> sqlplus pdbadmin/<your_password>@FREEPDB1 ``` ### Connecting from Outside the Container By default, Oracle Database exposes port 1521 for Oracle client connections, using Oracle's SQL\*Net protocol. SQL\*Plus or any Oracle Database client software can be used to connect to the database from outside of the container. To connect from outside of the container, start the container with the `-P` option, as described in the detailed Podman run command in the "Custom Configurations" section. Discover the mapped port by running the following command: ``` podman port <oracle-db> ``` To connect from outside of the container using SQL\*Plus, run the following commands: ``` # To connect to the database at the CDB$ROOT level as sysdba: sqlplus sys/<your password>@//localhost:<port mapped to 1521>/FREE as sysdba ``` ``` # To connect as non sysdba at the CDB$ROOT level: sqlplus system/<your password>@//localhost:<port mapped to 1521>/FREE ``` ``` # To connect to the default Pluggable Database (PDB) within the FREE Database: sqlplus pdbadmin/<your password>@//localhost:<port mapped to 1521>/FREEPDB1 ``` ### Reusing the Existing Database If the database is started using a host system directory mounted at an `/opt/oracle/oradata` location inside the container, as explained in the Custom Configuration section under "*Mounting Podman volume/host directory for database persistence*", then the data files remain persistent even after the container is destroyed. Another container with the same data files can be started by reusing the host system directory. To reuse this directory on the host system for the data volume, run the following commands: ```bash podman run -d --name <oracle-db> -v \ <writable_host_directory_path>:/opt/oracle/oradata \ container-registry.oracle.com/database/free:latest ``` ### Running Scripts After Setup and On Startup The Container images can be configured to run scripts after setup and on startup. Currently, `.sh` and `.sql` extensions are supported. For post-setup scripts, mount the volume `/opt/oracle/scripts/setup` to include scripts in this directory. For post-startup scripts, mount the volume `/opt/oracle/scripts/startup` to include scripts in this directory. After the database is set up or started, the scripts in those folders are run against the database in the container. SQL scripts are run as SYSDBA, and shell scripts are run as the current user. To ensure proper order for running scripts, Oracle recommends that you prefix your scripts with a number. For example: `01_users.sql`, `02_permissions.sql`, and so on. **Note:** The setup scripts will not run in Free and Free Lite image as both comes with a pre-built database. If host mount point (empty directory) is provided, then a new database setup will start and setup scripts will run. The following example mounts the local directory `/home/oracle/myScripts` to `/opt/oracle/scripts/startup`, which is then searched for custom startup scripts: ``` podman run -d --name <oracle-db> -v \ /home/oracle/myScripts:/opt/oracle/scripts/startup \ container-registry.oracle.com/database/free:latest ``` ## Oracle True Cache Oracle True Cache is an in-memory, consistent, and automatically managed cache for Oracle Database. ### Setting Up Network for Communication Between Primary Database and True Cache Container * Oracle Database Free True Cache container (True Cache container) and the Oracle Database Free Primary Database container (Primary Database container) must be on the same podman network to communicate with each other.\ Set up a podman network for inter-container communication using the following command which creates a bridge connection enabling communication between containers on the same host. podman network create tc_net Fetch the default subnet assigned to the preceding network by running the following command: podman inspect tc_net | grep -iw 'subnet' Pick any two IP addresses from the preceding subnet and assign one for the Primary Database container (say, PRI_DB_FREE_IP) and the other for the True Cache container (say, TRU_CC_FREE_IP). For communication across hosts, create a macvlan or ipvlan connection per [documentation](https://docs.podman.io/en/latest/markdown/podman-network-create.1.html). \ Specify the preceding podman network using the --net option to the podman run command of both the Primary Database container and the True Cache container as shown in following sections. ### Running Oracle Database Free True Cache in a Container Ensure that the database password is specified as a podman secret to both the Primary and True Cache containers and not as an environment variable. * Launch the Oracle Database Free Primary Database container using the `podman run` command as follows: podman run -td --name pri-db-free \ --hostname pri-db-free \ --net=tc_net \ --ip <PRI_DB_FREE_IP> \ -p :1521 \ --secret=oracle_pwd \ --secret=oracle_pwd_privkey \ --add-host="tru-cc-free:<TRU_CC_FREE_IP>" \ -e ENABLE_ARCHIVELOG=true \ -e ENABLE_FORCE_LOGGING=true \ -v [<host mount point>:]/opt/oracle/oradata \ container-registry.oracle.com/database/free:latest Ensure that your Primary Database container is up and running and in a healthy state. * Launch the Oracle Database Free True Cache container using the `podman run` command as follows: podman run -td --name tru-cc-free \ --hostname tru-cc-free \ --net=tc_net \ --ip <TRU_CC_FREE_IP> \ -p :1521 \ --secret=oracle_pwd \ --secret=oracle_pwd_privkey \ --add-host="pri-db-free:<PRI_DB_FREE_IP>" \ -e TRUE_CACHE=true \ -e PRIMARY_DB_CONN_STR=<PRI_DB_FREE_IP>:1521/FREE \ -e PDB_TC_SVCS="FREEPDB1:sales1:sales1_tc;FREEPDB1:sales2:sales2_tc;FREEPDB1:sales3:sales3_tc;FREEPDB1:sales4:sales4_tc" \ -v [<host mount point>:]/opt/oracle/oradata \ container-registry.oracle.com/database/free:latest **Note:** In above command, the list of Primary and True Cache services are mentioned using the string "FREEPDB1:sales1:sales1_tc;FREEPDB1:sales2:sales2_tc;FREEPDB1:sales3:sales3_tc;FREEPDB1:sales4:sales4_tc". The string consists of multiple entries in the format "<PDB_NAME>:<PRIMARY_SERVICE_NAME>:<TRUECACHE_SERVICE_NAME>" and these entries are separated by ";". ## Using the Lite image ### Starting an Oracle Database 23ai Free Lite Container Like the Full image, the Oracle Database 23ai Free Lite Container image also contains a pre-built database, so the **startup time is very fast**. Fast startup can be helpful in CI/CD scenarios. To start the container, run the following command where,`<oracle-db>` is the name of the container: ``` $ podman run -d --name <oracle-db> container-registry.oracle.com/database/free:23.5.0.0-lite ``` When the container is started, a random password is generated for the `SYS, SYSTEM, and PDBADMIN` users. This is termed as the default password. The Oracle Database is ready to use when the `STATUS` field shows `(healthy)` in the `podman ps` output. ### Custom Configurations To facilitate custom configurations, the Oracle Database container provides configuration parameters that you can use when starting the container. For example, this is the detailed `podman run` command supporting all custom configurations: ```bash podman run --name <container name> \ -p <host port>:1521 -p \ -e ORACLE_PDB=<your PDB name> \ -e ORACLE_PWD=<your database passwords> \ -v [<host mount point>:]/opt/oracle/oradata \ container-registry.oracle.com/database/free:23.5.0.0-lite Parameters: --name: The name of the container (default: auto generated). -p: The port mapping of the host port to the container port. The following ports is exposed: 1521 (Oracle Listener). -e ORACLE_PDB: The Oracle Database PDB name that should be used (default: FREEPDB1). -e ORACLE_PWD: The Oracle Database SYS, SYSTEM and PDB_ADMIN password (default: auto generated). -v /opt/oracle/oradata The data volume to use for the database. Has to be writable by the Unix "oracle" (uid: 54321) user inside the container. If omitted the database will not be persisted over container recreation. -v /opt/oracle/scripts/startup Optional: A volume with custom scripts to be run after database startup. For further details see the "Running scripts after setup and on startup" section above. ``` **Note:** Oracle True Cache is not supported for the Lite image. ## Documentation Accessibility For information about Oracle's commitment to accessibility, visit the Oracle Accessibility Program website at [https://www.oracle.com/corporate/accessibility/](https://www.oracle.com/corporate/accessibility/). ______ Oracle Database 23ai Free Container Image Documentation Copyright © 2005, 2022, 2024 Oracle and/or its affiliates. Oracle Free Use Terms and Conditions Definitions "Oracle" refers to Oracle America, Inc. "You" and "Your" refers to (a) a company or organization (each an “Entity”) accessing the Programs, if use of the Programs will be on behalf of such Entity; or (b) an individual accessing the Programs, if use of the Programs will not be on behalf of an Entity. "Program(s)" refers to Oracle software provided by Oracle pursuant to the following terms and any updates, error corrections, and/or Program Documentation provided by Oracle. "Program Documentation" refers to Program user manuals and Program installation manuals, if any. If available, Program Documentation may be delivered with the Programs and/or may be accessed from www.oracle.com/documentation. "Separate Terms" refers to separate license terms that are specified in the Program Documentation, readmes or notice files and that apply to Separately Licensed Technology. "Separately Licensed Technology" refers to Oracle or third party technology that is licensed under Separate Terms and not under the terms of this license. Separately Licensed Technology Oracle may provide certain notices to You in Program Documentation, readmes or notice files in connection with Oracle or third party technology provided as or with the Programs. If specified in the Program Documentation, readmes or notice files, such technology will be licensed to You under Separate Terms. Your rights to use Separately Licensed Technology under Separate Terms are not restricted in any way by the terms herein. For clarity, notwithstanding the existence of a notice, third party technology that is not Separately Licensed Technology shall be deemed part of the Programs licensed to You under the terms of this license. Source Code for Open Source Software For software that You receive from Oracle in binary form that is licensed under an open source license that gives You the right to receive the source code for that binary, You can obtain a copy of the applicable source code from [https://oss.oracle.com/sources/](https://oss.oracle.com/sources/) or [https://www.oracle.com/goto/opensourcecode](https://www.oracle.com/goto/opensourcecode). If the source code for such software was not provided to You with the binary, You can also receive a copy of the source code on physical media by submitting a written request pursuant to the instructions in the "Written Offer for Source Code" section of the latter website. ______ The following license terms apply to those Programs that are not provided to You under Separate Terms. License Rights and Restrictions Oracle grants to You, as a recipient of this Program, a nonexclusive, nontransferable, limited license to, subject to the conditions stated herein, (a) internally use the unmodified Programs for the purposes of developing, testing, prototyping and demonstrating your applications, and running the Programs for your own internal business operations; and (b) redistribute unmodified Programs and Programs Documentation, under the terms of this License, provided that You do not charge Your end users any additional fees for the use of the Programs. You may make copies of the Programs to the extent reasonably necessary for exercising the license rights granted herein and for backup purposes. You are granted the right to use the Programs to provide third party training in the use of the Programs and associated Separately Licensed Technology only if there is express authorization of such use by Oracle on the Program's download page or in the Program Documentation. Your license is contingent on Your compliance with the following conditions: * You include a copy of this license with any distribution by You of the Programs; * You do not remove markings or notices of either Oracle's or a licensor's proprietary rights from the Programs or Program Documentation; * You comply with all U.S. and applicable export control and economic sanctions laws and regulations that govern Your use of the Programs (including technical data); * You do not cause or permit reverse engineering, disassembly or decompilation of the Programs (except as allowed by law) by You nor allow an associated party to do so. For clarity, any source code that may be included in the distribution with the Programs is provided solely for reference purposes and may not be modified, unless such source code is under Separate Terms permitting modification. Ownership Oracle or its licensors retain all ownership and intellectual property rights to the Programs. Information Collection The Programs' installation and/or auto-update processes, if any, may transmit a limited amount of data to Oracle or its service provider about those processes to help Oracle understand and optimize them. Oracle does not associate the data with personally identifiable information. Refer to Oracle's Privacy Policy at [www.oracle.com/privacy](www.oracle.com/privacy). Disclaimer of Warranties; Limitation of Liability THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. ORACLE FURTHER DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NONINFRINGEMENT. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW WILL ORACLE BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. Last updated: 11 October, 2024

Short URL for Repo

https://container-registry.oracle.com/ords/ocr/ba/database/free

Other Open Source Licenses

The container image you have selected and all of the software that it contains is licensed under the Oracle Free Use Terms and Conditions which is provided in the container image. Your use of the container is subject to the terms of Oracle Free Use Terms and Conditions license.

Pull Command for Latest

docker pull

Tags

TagOS/ArchitectureSizePull CommandLast UpdatedImage ID
latest-litelinux/arm64836.74 MBdocker pull container-registry.oracle.com/database/free:latest-lite6 weeks ago0b5c6efe0bdd
23.5.0.0-lite-arm64linux/arm64836.74 MBdocker pull container-registry.oracle.com/database/free:23.5.0.0-lite-arm646 weeks ago0b5c6efe0bdd
23.5.0.0-litelinux/arm64836.74 MBdocker pull container-registry.oracle.com/database/free:23.5.0.0-lite6 weeks ago0b5c6efe0bdd
latestlinux/arm642.94 GBdocker pull container-registry.oracle.com/database/free:latest8 weeks ago8e32bb912325
23.5.0.0-arm64linux/arm642.94 GBdocker pull container-registry.oracle.com/database/free:23.5.0.0-arm648 weeks ago8e32bb912325
23.5.0.0linux/arm642.94 GBdocker pull container-registry.oracle.com/database/free:23.5.0.08 weeks ago8e32bb912325
latest-litelinux/amd64859.78 MBdocker pull container-registry.oracle.com/database/free:latest-lite3 months ago742f1b37af1d
23.5.0.0-lite-amd64linux/amd64859.78 MBdocker pull container-registry.oracle.com/database/free:23.5.0.0-lite-amd643 months ago742f1b37af1d
23.5.0.0-litelinux/amd64859.78 MBdocker pull container-registry.oracle.com/database/free:23.5.0.0-lite3 months ago742f1b37af1d
latestlinux/amd642.99 GBdocker pull container-registry.oracle.com/database/free:latest3 months agoe1ff84cf03ed
23.5.0.0-amd64linux/amd642.99 GBdocker pull container-registry.oracle.com/database/free:23.5.0.0-amd643 months agoe1ff84cf03ed
23.5.0.0linux/amd642.99 GBdocker pull container-registry.oracle.com/database/free:23.5.0.03 months agoe1ff84cf03ed