win10安装
安装包
版本:Oracle 11.2.0.1.0
链接:https://pan.baidu.com/s/12ctlN7GaU4JbIOuawpsiqA
提取码:bah3
安装步骤
开始安装
解压后,双击setup.exe。目录建议全英文
环境检测
双击setup.exe后,自动启动安装程序,检测环境配置。
我本次目的是测试安装流程,点击是继续安装即可。对安装无影响,对性能有影响。
配置安全更新
电子邮箱配置自己的即可,会接受安全问题通知,也可以不填
安装选项
选择创建和配置数据库,点击下一步
系统类
这里在win10上实验,选择的桌面类
典型安装
设置数据库文件存储目录、数据库版本、字符集、数据库名及管理口令(用户名为system
)
后续步骤
典型安装完成后,按照流程下一步即可完成安装
登录
CMD:sqlplus system/<system password>
网页:https://localhost:1158/em
,用户名system
,口令为典型安装中配置的管理口令
Ubuntu 18 Docker安装
安装包
版本:Oracle Express Edition 11g Release 2
GitHub:https://github.com/wnameless/docker-oracle-xe-11g
安装步骤
Docker安装
参考文档:https://www.runoob.com/docker/ubuntu-docker-install.html
安装命令如下:
1 | curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun |
也可以使用国内 daocloud 一键安装命令:
1 | curl -sSL https://get.daocloud.io/docker | sh |
安装Oracle 11G
Installation(Local)
1 | git clone https://github.com/wnameless/docker-oracle-xe-11g.git |
Installation(DockerHub)
1 | docker pull wnameless/oracle-xe-11g-r2 |
SSH server has been removed since 18.04, please use “docker exec”
运行
Run with 1521 port opened:
1 | docker run -d -p 49161:1521 wnameless/oracle-xe-11g-r2 |
Run this, if you want the database to be connected remotely:
1 | docker run -d -p 49161:1521 -e ORACLE_ALLOW_REMOTE=true wnameless/oracle-xe-11g-r2 |
默认信息
By default, the password verification is disable(password never expired)
Connect database with following setting:
1 | hostname: localhost |
Password for SYS & SYSTEM
1 | oracle |