我正在使用Ubuntu服务器14.04,我试图找到如何安装oracle数据库11g但找不到。
你有任何建议或指导来指导这份工作吗?
答案 0 :(得分:1)
要在Ubuntu上安装Oracle 11g数据库,首先从Ubuntu下载带有通用内核的Ubuntu,然后发布该链接。
在12.0上安装解释here
答案 1 :(得分:0)
另一个方法是使用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