1.从docker hub拉取镜像
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
2.创建容器
docker run --restart=always -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
3.进入容器
docker exec -it oracle11g /bin/bash
4.root登录,输入完su root之后,出现password: 直接输入 helowin;然后回车
su root
5.添加修改配置文件。输入vi /etc/profile 进入文件修改。在最后一行粘贴以下文件。【注意,到了最后一行之后,键盘敲击i 进入编辑模式。完成粘贴之后按Esc ;输入:wq!然后回车(enter)】
export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2 export ORACLE_SID=helowin export PATH=$ORACLE_HOME/bin:$PATH
6.依次输入以下代码,分别回车
source /etc/profile su - oracle ln -s $ORACLE_HOME/bin/sqlplus /usr/bin
7.依次输入以下命令
sqlplus /nolog conn /as sysdba; alter user system identified by oracle; //这里是把system用户密码设为oracle conn system/oracle; create user account identified by password; //注意这里user后面是你设置的用户名,by后面是你设置的密码[例如 create user account identified by password;] grant create session to 用户名; //给用户授权之后才能登陆
8.最后授权
grant create session to 用户名;
9.navicat远程连接
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。