docker安装和配置oracle11G
1. 开始拉取镜像-执⾏命令:
docker pull registry-hangzhou.aliyuncs/helowin/oracle_11g
下载的过程少长,等待吧,喝杯咖啡,休息⼀会!(镜像6.8G)
下载完成后查看镜像: docker images
2. 创建容器
docker run -d -p 1521:1521 --name oracle11g registry-hangzhou.aliyuncs/helowin/oracle_11g
这⾥说⼀下,命令后⾯的地址⼀定要是你下载的镜像地址也就是你拉取镜像名字,否则会出现名字已存在等问题!如果创建成功能会返回容器id
3. 启动容器
docker start oracle11g
进⼊镜像进⾏配置
docker exec -it oracle11g bash
切换到root ⽤户下
su root
密码:helowin
注意这⾥还是在容器当中。。有朋友退去了。。。。。。。
4. 编辑profile⽂件配置ORACLE环境变量
在docker中查并编辑profile⽂件 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
在最后加上
保存并退出:wq
5. oracle的配置
1. 创建软连接
ln -s $ORACLE_HOME/bin/sqlplus /usr/bin
2. 切换到oracle ⽤户
这⾥还要说⼀下,⼀定要写中间的 - 必须要,否则软连接⽆效
oracle 新建用户
6. oracle数据库的操作
1. 登录sqlplus并修改sys、system⽤户密码
sqlplus /nolog
conn /as sysdba
2. 修改和创建⽤户
接着执⾏下⾯命令
alter user system identified by system;
alter user sys identified by sys;
也可以创建⽤户  create user test identified by test;
并给⽤户赋予权限  grant connect,resource,dba to test;
3. scott⽤户的开启
--解锁scott⽤户(安装时若使⽤默认情况没有解锁和设置密码进⾏下列操作,要超级管理员操作)  alter user scott account unlock;
--解锁scott⽤户的密码【此句也可以⽤来重置密码】
alter user scott identified by tiger;
7. navicat连接
打开navicat后(navicat12不⽤配置oci.dll⽂件了)
直接新建连接

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。