基于linux 使用docker安装oracle11g
- 拉取镜像
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
- 启动容器
docker start oracle11g
- 进入容器
docker exec -it oracle11g /bin/bash
- 切换root用户
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
- 创建软连接
ln -s $ORACLE_HOME/bin/sqlplus /usr/bin
- 回到oracle
su - oracle
- 登陆sqlplus 修改管理员用户名密码
sqlplus /nolog
conn /as sysdba //管理员登录
alter user system identified by system;
alter user sys identified by system;
alter user scott account unlock;//解锁scott用户
select username,account_status from dba_users WHERE USERNAME='SCOTT';//查看用户状态
alter user scott identified by tiger; //如果状态为"expired”,执行该语句
alter user SCOTT identified by 123456; //重置scott密码
create user 用户名 identified by 密码; //创建新的用户
grant connect,resource,dba to 用户名; //给新用户赋予权限
解锁scott图示:
使用navicat连接,
一定要注意服务名,要使用 helowin
使用PLSQL连接
在编写tnsnames.ora时一定要注意服务名,要使用 helowin