拉取oracle11镜像
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
启动容器
docker run -d -p 1521:1521 --name oracle registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
进入容器
[root@rzk ~]# docker exec -it oracle bash
切换root用户
su root
密码 helowin
编辑 vi /etc/profile
添加一下三行
export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2
export ORACLE_SID=helowin
# 使其生效
> source /etc/profile
![](https://www.icode9.com/i/l/?n=20&i=blog/1898315/202109/1898315-20210928023315316-2060235565.png)
export PATH=$ORACLE_HOME/bin:$PATH
登录sqlplus并修改sys、system用户密码
sqlplus /nolog --登录
conn /as sysdba -- 测试连接
alter user system identified by system;--修改system用户账号密码;
alter user sys identified by system;--修改sys用户账号密码;
create user test identified by test; -- 创建内部管理员账号密码;
grant connect,resource,dba to yan_test; --将dba权限授权给内部管理员账号和密码;
ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED; --修改密码规则策略为密码永不过期;(会出现坑,后面讲解)
alter system set processes=1000 scope=spfile; --修改数据库最大连接数据;