docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 1.2 查看是否拉取成功 [root@localhost project]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g latest 3fa112fd3642 7 years ago 6.85GB 1.3 重命名 docker tag registry.cn-hangzho...
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 1. 查看拉去好的镜像:最新版本6.85GB 2.创建容器并运行 docker run --privileged -d --restart=always -v /home/oracle:/data/oracle -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 1. –privileged...
export PATH=$ORACLE_HOME/bin:$PATH ORACLE_HOME:数据库的实例启动所需要的所有的程序和相关的文件位置; ORACLE_SID:用以指定默认的登录数据库。oracle_sid则是操作系统的环境变量,用户和操作系统交互,也就是说要得到实例名,必须使用sid。在数据库安装结束时 ,oracle_sid已经是一个确定的字符串了,其值必须与数据...
docker pull oracleinanutshell/oracle-xe-11g 离线 tar包下载:链接:https://pan.baidu.com/s/1bRp6mSqYtMwIel1172NinA提取码: 62in #导入镜像 docker load < /root/oracle-xe.tar 创建容器 docker run -d -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true -e ORACLE_DISABLE_ASYNCH_IO=true -e ORACLE_ENAB...
1、拉取Oracle镜像,并查看 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g docker images 2、创建临时容器 docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 3、进入容器 #先查看所有容器,找到Oracle容器的ID或者名称docker ps -a#以root...
安装oracle 1、安装docker环境。 2、开始拉取oracle镜像(时间比较久,建议docker使用阿里云镜像) docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 1. 3、下载完成后,查看镜像 ocker images 1. 4、创建容器 docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/hel...
Docker 部署 Oracle11g 1.在docker打开的情况下,使用下方命令拉去镜像,大概需要下载3个G的image文件 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 2.启动Oracle镜像并为镜像新建容器,注意此处的oracle11g即为容器名,可以自主设置 docker run -d -p 1521:1521 --name oracle11g registry.cn-...
docker pull lhrbest/oracle_11g_ee_lhr_11.2.0.4:1.0# 可以选择从阿里云下载,一般比较快 docker pull registry.cn-hangzhou.aliyuncs.com/lhrbest/oracle_11g_ee_lhr_11.2.0.4:1.0# 从阿里云下载后可以tag成如下形式 docker tag registry.cn-hangzhou.aliyuncs.com/lhrbest/oracle_11g_ee_lhr_11.2.0.4:1.0lhrbest...
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 执行以下命令以创建并运行 Oracle 11g 容器(其中:30026为映射主机端口,8081为管理界面端口,helowin为Oracle数据库唯一实例ID,这些都是可以配置的): docker run -d -p 30026:1521 -p 8081:8080 \--name oracle_11g \-e ORACLE_HOME=/home/ora...
使用docker安装配置oracle 11g 1、安装docker环境。 2、开始拉取oracle镜像 docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle\_11g 3、下载完成后,查看镜像 docker images 4、启动容器 docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle\_11g...