docker oracle install

Posted chenzechao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker oracle install相关的知识,希望对你有一定的参考价值。

 

https://hub.docker.com/r/9fevrier/oracle-11g
Informations

Oracle directory : /opt/oracle
Data directory : /app/oracle/data
SID : orcl
Login/password : system / oracle
System root : root / C%3hUMd@2#
System Oracle user : oracle / oracle
Start listener : lsnrctl start
Start database : sqlplus / as sysdba then startup
Start the container

docker run --name oracle -d -t -p 1521:1521 -p 22:2222 9fevrier/oracle-11g:15.08.21  /usr/bin/supervisord -c /etc/supervisord.conf

Tags
15.08.22
CentOS 6.6 + Oracle 11g r2
SSH port 22

### 查看容器id
docker ps -a
### 进入容器
docker exec -it 60a0b1414fd3 /bin/bash

### 切换用户名
su - oracle
### 设置参数
export ORACLE_SID=orcl
export ORACLE_HOME="/opt/oracle/product/11.2.0/dbhome_1"
export PATH="${PATH}:${ORACLE_HOME}/bin"

### 启动监听
lsnrctl start
lsnrctl status
### 启动oracle实例
sqlplus / as sysdba
shutdown immediate;
startup;
select * from user_tables;

 

以上是关于docker oracle install的主要内容,如果未能解决你的问题,请参考以下文章

Mac使用Docker安装Oracle

Mac使用Docker安装Oracle

环境初始化 Build and Install the Apache Thrift IDL Compiler Install the Platform Development Tools(代码片段

oracle linux 6 docker 安装(包括编译git源码)

sql Oracle代码片段

Linux 上 docker 安装 oracle-xe-11g 记录