最近在给同学弄毕业设计的数据库,因为oracle在个人电脑上极不稳定,所以他的电脑数据库崩溃了,这时候我就在docker上为他拉了一个oracle,解决了问题。
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
docker images
docker run -d -p 1521:1521 --name oracle11g registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
##### 4、进入容器
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
注意:按i进入编辑模式,输入上述命令后,按ESC键退出编辑模式,再输入:wq保存退出
如图所示:
source /etc/profile
ln -s $ORACLE_HOME/bin/sqlplus /usr/bin
su oracle
sqlplus /nolog
conn /as sysdba
alter user system identified by system;(修改密码为system)
alter user sys identified by sys;(修改密码为sys)
创建用户
create user test identified by test;
并给用户赋予权限
grant connect,resource,dba to test;