1

I am using Ubuntu server 14.04 and I tried to find how to install oracle database 11g but could not found.

Do you have any suggestion or tutorial to guide that job?

4
  • shall i provide installation for server 12.0? Commented Mar 23, 2015 at 9:55
  • @utility: it's ok. Can you share me? Commented Mar 23, 2015 at 9:56
  • @Luc are you able to install Oracle 11g on Ubuntu Server Commented Sep 15, 2016 at 14:13
  • 1
    @twister_void: Here is what you need, pls check file setup.sh github.com/wnameless/docker-oracle-xe-11g/tree/master/assets Commented Sep 16, 2016 at 0:50

2 Answers 2

1

To install the Oracle 11g database on Ubuntu, first download Ubuntu with a generic kernel from Ubuntu, and then release the link.

Installing on 12.0 is explained here

Sign up to request clarification or add additional context in comments.

Comments

0

Another aproach is to setup a docker container with Oracle 11g. Since Ubuntu is not a supported operating system, in can be much easier.

Here are the steps to install Oracle 11g Enterprise Edition:

I. Firstly install docker (if not installed) :

  1. sudo apt-get update

  2. sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common

  3. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

  4. sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

  5. sudo apt-get update

  6. sudo apt-get install docker-ce docker-ce-cli containerd.io

(source https://docs.docker.com/engine/install/ubuntu/#install-using-the-repository)

II. Download and extract database files

  1. Download Oracle installation files https://www.oracle.com/database/technologies/112010-linx8664soft.html

  2. Unzip both files so you have a single "database" folder. Place this "database" folder somewhere and name it e.g "installation_folder"

III. Setup docker container:

  1. sudo docker pull jaspeen/oracle-11g

  2. sudo docker run --privileged --name oracle11g -p 1521:1521 -v /path/to/installation_folder:/install jaspeen/oracle-11g

IV. Use it. E.g. connect with SqlDeveloper (port 1521, SID orcl), or use sqlplus:

  1. sudo docker ps -a Get container [YOUR_CONTAINER_ID]

  2. sudo docker exec -it [YOUR_CONTAINER_ID] /bin/bash

  3. su - oracle

  4. sqlplus / as sysdba

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.