先启动docker服务 并查看镜像文件
systemctl start docker
docker images
docker search orcale
docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
在查看镜像
docker images
制作容器
docker run -p 1521:1521 --name oracle_11g -d --restart=always registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
查看容器
docker ps
进入容器内部
docker exec -it 容器id /bin/bash
切换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
加载环境变量
source /home/oracle/.bash_profile
切换oracle用户
登录sqlplus并修改sys、system用户密码
sqlplus /nolog
alter user system identified by oracle;
alter user sys identified by oracle;
退出
exit;
参考:https://blog.csdn.net/qq_42805685/article/details/90720578
参考:https://blog.csdn.net/mmingxiang/article/details/81980392