oracle-12c-ee安装

廉价感情. 提交于 2020-03-17 11:53:15

基于本学期的oracle,因为手上没有windows平台,所以使用linux和docker进行搭建了oracle-12c-ee,原文章:https://blog.csdn.net/weixin_38159676/article/details/92795453。这边进行引用学习

#拉取镜像
docker pull absolutapps/oracle-12c-ee
#运行容器
docker run -d -p 8080:8080 -p 1521:1521 --name oracle-12cR1-ee --privileged absolutapps/oracle-12c-ee
#容器开启时间很长,需要打开日志查看安装情况,此条命令会卡很久,看个人机器配置,我卡了30分钟。
docker logs -f oracle-12cR1-ee
#进入容器内部
docker exec -it oracle-12cR1-ee /bin/bash
echo $ORACLE_SID
#登录
sqlplus system/oracle@//localhost:1521/orcl
#创建表空间
create tablespace activiti datafile '/u01/app/oracle/activiti.dbf' size 200M;
#创建用户
create user activiti identified by activiti default tablespace activiti;
#给用户授予权限
grant create session to activiti;
grant connect,resource to activiti;
grant dba to activiti;
grant resource to activiti;
# enjoy it
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!