1、获取阿里云的oracle镜像
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g

 

2、查看镜像
docker images

 

3、启动容器
docker run -d -it -p 1521:1521 --name oracle11g --restart=always registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g

 

4、查看容器状态
docker ps

 

5、进入容器
docker exec -it oracle11g bash

 

6、切换到root账户(默认进入之后是oracle账户)
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

source /etc/profile 使配置生效

 

8、创建软链接
ln -s $ORACLE_HOME/bin/sqlplus /usr/bin

 

9、切换到oracle用户,登录sqlplus

su - oracle

sqlplus /nolog

conn /as sysdba

 

10、修改sys、system用户密码:

alter user system identified by xxx;
alter user sys identified by xxx;


alter profile default limit PASSWORD_LIFE_TIME UNLIMITED;

 

11、创建用户
用一个具有dba权限的用户登录(sysdba),然后输入以下语句

create user xxx identified by yyy;

grant connect,resource,dba to xxx;

 

12、查看哪些用户拥有DBA权限
select * from dba_role_privs where granted_role='DBA';

 

13、收回某用户的DBA权限则执行
revoke dba from user_Name;