docker oracle11g 安装

下载镜像
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
创建容器
docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
进入镜像进行配置
docker exec -it oracle11g bash # 也可以用容器管理工具进入
进行软连接
sqlplus /nolog
如果命令报错,就按照下列步骤操作
su root # 切换用户
密码:helowin

vi /etc/profile # 添加环境变量,在末尾加入:
export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2
export ORACLE_SID=helowin
export PATH= O R A C L E H O M E / b i n : ORACLE_HOME/bin: ORACLEHOME/bin:PATH
然后wq保存

ln -s $ORACLE_HOME/bin/sqlplus /usr/bin # 创建软连接

#登录sqlplus并修改sys、system用户密码
sqlplus /nolog
conn /as sysdba

接着执行下面命令

alter user sys identified by sys;
alter user system identified by system;
登录
SID:helowin
端口:1521
用户名:system
密码:system

你可能感兴趣的:(docker)