目录
- 拉取镜像
- 查python看镜像
- 启动容器
- 进入镜像配置
- 使用Navicat连接
- 总结
拉取镜像
docker pull registry.jscn-hangzhou.aliyuncs.com/helowin/oracle_11g
查看镜像
docker imagesandroid
启动容器
docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
进入镜像配置
docker exec -it oracle bash
进行软连接:
sqlplus /nolog
发现没有这个命令:
切换到root用户下:
su root
密码:helowin
编辑profile文件配置ORACLEhttp://www.devze.com环境变量:
vi /etc/profile
追加下面的配置:
export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2 export ORACLE_SID=helowin export PATH=$ORACLE_HOME/bin:$PATHylQUyLEjzE
刷新profile
source profile
切换到oracle用户:
su - oracle
登录sqlplus并修改sys、system用户密码:
sqlplus /nolog conn /as sysdba
修改密码:
alter user system identified by system; alter user sys identified by sys;
注意:如果修改密码时提示数据库没有打开:(database not open)
输入:
alter database open;
如果提示(database not mounted)
输入:
alter database mount;
最后刷新表:
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
使用Navicat连接
首先查看oracle 的 lsnrctl 服务:
随便选一个填入:服务名字段
即可连接成功。
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程客栈(www.devze.com)。
精彩评论