免费资源网 – https://freexyz.cn/
拉取镜像
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g查看镜像
docker images启动容器
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文件配置ORACLE环境变量:
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:$PATH刷新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 服务:
随便选一个填入:服务名字段
即可连接成功。
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
© 版权声明
THE END
暂无评论内容