我正在使用Ubuntu Server 14.04,但试图找到如何安装oracle数据库11g,但找不到。
您有任何建议或指南来指导该工作吗?
要在Ubuntu上安装Oracle 11g数据库,请先从Ubuntu上下载具有通用内核的Ubuntu,然后释放链接。
在12.0上安装说明here
另一个方法是使用Oracle 11g设置docker容器。由于Ubuntu不是受支持的操作系统,因此使用起来会容易得多。
以下是安装Oracle 11g企业版的步骤:
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io
(源https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository)
下载Oracle安装文件https://www.oracle.com/database/technologies/112010-linx8664soft.html
解压缩两个文件,因此您只有一个“数据库”文件夹。将此“数据库”文件夹放在某处并命名为“ installation_folder”
sudo docker pull jaspeen/oracle-11g
sudo docker run --privileged --name oracle11g -p 1521:1521 -v /path/to/installation_folder:/install jaspeen/oracle-11g
sudo docker ps -a
获取容器[YOUR_CONTAINER_ID]
sudo docker exec -it [YOUR_CONTAINER_ID] /bin/bash
[su - oracle
sqlplus / as sysdba