使用docker快速安装oracle
2022年3月2日小于 1 分钟约 278 字
使用 docker 快速安装 oracle
1.拉取镜像:
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
2.创建容器
docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
3.进入镜像配置
docker exec -it oracle11g bash
su root;
密码:helowin
编辑环境变量:
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
创建软连接
ln -s $ORACLE_HOME/bin/sqlplus /usr/bin
source /etc/profile
切换到 oracle 用户
su - oracle
登录 sqlplus 并修改 sys、system 用户密码
- 登录 sqlplus
sqlplus /nolog
conn /as sysdba
- 接着更改用户密码
alter user system identified by system;
alter user sys identified by sys;
- 设置密码永不过期
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;
scott 用户的开启
SCOTT 是 ORACLE 内部的一个实例用户,下面有 emp、dept 等实例表,这些表和表间的关系演示了关系型数据库的一些基本原理。
alter user scott account unlock;
alter user scott identified by abc;
commit;
4.重启容器后就可以直接用了
docker restart oracle11g
现在可以用system
用户连接,密码:system