docker构建oracle集群,docker 构建 oracle数据库 镜像-Go语言中文社区
前言
之前docker 部署的 oracle 鏡像,突然從 dockerhub 下架了。所以沒辦法,只能自己打包一個oracle 數據庫的鏡像。
找來找去,其實oracle 自身就提供了oracle 的產品 docker 構建腳本。所以直接按照oracle 官方的docker 構建倉庫的說明打包。
oracle 官方 docker image
官方提供了一個開源倉庫,里面有所有的oracle產品的docker image構建的腳本。
地址:https://github.com/oracle/docker-images
將上述的倉庫clone 到本地。
docker images clone下來的目錄結構
我們需要打包的oracle 數據庫,在 OracleDatabase 這個目錄中。
進入到OracleDatabase 可以看到兩個文件夾,其實比較關鍵。
一個RAC,一個SingleInstance。
看名字就可以很明白,如果做集群鏡像,就打包RAC的 ,如果要是做單節點的就打包SingleInstance的。
我們這邊僅需要一個單節點數據庫,所以就打包SingleInstance。
支持的oracle database 版本
版本號11.2.0.2
12.1.0.2
12.2.0.1
18.3.0
18.4.0
19.3.0
我們以12.2.0.1版本作為例子
docker-images這個倉庫只有build的腳本,并不攜帶任何oracle database 的安裝包。所以我們還得去下載oracle database 對應版本的安裝包。
準備oracle 12.2.0.1 的安裝包
全版本的下載地址 https://www.oracle.com/cn/database/technologies/enterprise-edition/documentation/database.html
我們需要的12.2.0.1 版本 https://www.oracle.com/database/technologies/oracle12c-linux-12201-downloads.html
下載12.2.0.1 版本的linux 版本安裝包。下載好后,將壓縮包文件放到
docker-images/OracleDatabase/SingleInstance/dockerfiles/12.2.0.1
目錄下即可。
構建
cd docker-images/OracleDatabase/SingleInstance/dockerfiles
執行該目錄下的 buildDockerImage.sh
Usage: buildDockerImage.sh -v [version] [-e | -s | -x] [-i] [-o] [Docker build o ption]
Builds a Docker Image for Oracle Database.
Parameters:
-v: version to build
Choose one of: 11.2.0.2 12.1.0.2 12.2.0.1 18.3.0 18.4.0 19.3.0
-e: creates image based on 'Enterprise Edition'
-s: creates image based on 'Standard Edition 2'
-x: creates image based on 'Express Edition'
-i: ignores the MD5 checksums
-o: passes on Docker build option
* select one edition only: -e, -s, or -x
LICENSE UPL 1.0
Copyright (c) 2014-2019 Oracle and/or its affiliates. All rights reserved.
該腳本的幫助文檔 還是比較全面的 ,所以按照提示執行編譯即可。
我這邊的build 參數
./buildDockerImage.sh -v 12.2.0.1 -e
打包成功后,會在docker images 下生成 oracle/database:12.2.0.1-ee 這個鏡像。
運行容器
docker run --name
--shm-size=1g
-p 1521:1521 -p 8080:8080
-e ORACLE_PWD=
-v [:]/u01/app/oracle/oradata
-d
oracle/database:12.2.0.1-ee
可以設置的參數如下
Parameters:
--name: The name of the container (default: auto generated)
--shm-size: Amount of Linux shared memory
-p: The port mapping of the host port to the container port.
Two ports are exposed: 1521 (Oracle Listener), 8080 (APEX)
-e ORACLE_PWD: The Oracle Database SYS, SYSTEM and PDB_ADMIN password (default: auto generated)
-v /u01/app/oracle/oradata
The data volume to use for the database.
Has to be writable by the Unix "oracle" (uid: 1000) user inside the container!
If omitted the database will not be persisted over container recreation.
-v /u01/app/oracle/scripts/startup | /docker-entrypoint-initdb.d/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 /u01/app/oracle/scripts/setup | /docker-entrypoint-initdb.d/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.
大概看一下就明白了,其他的也沒啥特別的參數。
這個容器啟動成功后,實例名為ORCLPDB1 的數據庫就可以測試連接一下。
連接參數如下
即可連接成功,剩下的如何使用,自由發揮咯……
總結
以上是生活随笔為你收集整理的docker构建oracle集群,docker 构建 oracle数据库 镜像-Go语言中文社区的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 成信钟楼定时微博报时的设计与实现
- 下一篇: 电脑维修:电脑维修必备工具整理