docker pull registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
docker run -d -p 1521:1521 --name oracle registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g
[root@rzk ~]# docker exec -it oracle bash
su root
密码 helowin
添加一下三行
export ORACLE_HOME=/home/oracle/app/oracle/product/11.2.0/dbhome_2 export ORACLE_SID=helowin # 使其生效 > source /etc/profile ![](https://www.www.zyiz.net/i/l/?n=20&i=blog/1898315/202109/1898315-20210928023315316-2060235565.png) export PATH=$ORACLE_HOME/bin:$PATH
sqlplus /nolog --登录 conn /as sysdba -- 测试连接 alter user system identified by system;--修改system用户账号密码; alter user sys identified by system;--修改sys用户账号密码; create user test identified by test; -- 创建内部管理员账号密码; grant connect,resource,dba to yan_test; --将dba权限授权给内部管理员账号和密码; ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED; --修改密码规则策略为密码永不过期;(会出现坑,后面讲解) alter system set processes=1000 scope=spfile; --修改数据库最大连接数据;
参考地址
参考地址