docker 安装 oracle11g 并使用工具连接

基于linux 使用docker安装oracle11g

  1. 拉取镜像
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
  1. 查看镜像
docker images
  1. 创建一个容器
docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
  1. 启动容器
docker start oracle11g
  1. 进入容器
docker exec -it oracle11g  /bin/bash
  1. 切换root用户
su root

密码:helowin 【这密码是固定的】
7. 编辑环境,此时处于容器中,不要退出

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
  1. 加载环境
source /etc/profile 
  1. 创建软连接
ln -s $ORACLE_HOME/bin/sqlplus /usr/bin
  1. 回到oracle
su - oracle
  1. 登陆sqlplus 修改管理员用户名密码
     sqlplus /nolog  
     conn /as sysdba  //管理员登录
     alter user system identified by system;
     alter user sys identified by system;
     alter user scott account unlock;//解锁scott用户
     select username,account_status from dba_users WHERE USERNAME='SCOTT';//查看用户状态
     alter user scott identified by tiger; //如果状态为"expired”,执行该语句
     alter user SCOTT identified by 123456; //重置scott密码
     create user 用户名 identified by 密码;   //创建新的用户
     grant connect,resource,dba to 用户名;    //给新用户赋予权限

解锁scott图示:
在这里插入图片描述

使用navicat连接,

一定要注意服务名,要使用 helowin
在这里插入图片描述

使用PLSQL连接

在编写tnsnames.ora时一定要注意服务名,要使用 helowin
在这里插入图片描述

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值