How to download and install "oracle-xe-11.2.0-1.0.x86_64.rpm.zip"

Viewed 10472

I want to install oracle database. All the tutorial in web i have seen so far include link to download "oracle-xe-11.2.0-1.0.x86_64.rpm.zip" is redirecting to the page where there is 18c only.and i search google a lot but didn't find any link to download the file. Later i download 11gR2 from this link this link but i'm not finding any installing guide which can help me to install it.

N.B: OS Ubuntu 14.04

4 Answers
  1. Take the link! (It was taken from this ftp).

  2. Next, you have to use docker for Oracle Database installation. This link will help you. Two important notes:

    • As the link to the 11.2 version is dead, you have to download it manually and copy in the folder '11.2.0.2' (its the subfolder in place, where buildDockerImage.sh resides).
    • Then run

      ./buildDockerImage.sh -x -v 11.2.0.2

P.s. Firstly, I built XE 18.4.0. Building Docker image took way long! The building of 11.2.0.2, took 85 seconds. So, if you see that the script is stuck somewhere, it's wise to wait. (I halted execution a few times, thinking that it had hung up...)

Oracle removed the links, but the files are still there.

https://download.oracle.com/otn/linux/oracle11g/xe/oracle-xe-11.2.0-1.0.x86_64.rpm.zip https://download.oracle.com/otn/nt/oracle11g/xe/OracleXE112_Win32.zip https://download.oracle.com/otn/nt/oracle11g/xe/OracleXE112_Win64.zip

Of course before using that direct link, you need to go to any other public download page and accept the license agreement, but after that, it works.

PS: can be found in the webarchive http://web.archive.org/web/20210204141448/https://www.oracle.com/database/technologies/xe-prior-releases.html

and try this instructions http://www2.hawaii.edu/~lipyeow/ics321/2015spr/installoracle11g.html

in general, there are quite a few of them in the search engine

It seems that oracle's link to download Oracle Database 11g XE is deleted and it is very hard to download it now. After some hours of searching, I found this link to download.

An easy to follow installation guide can be found here.

And here's the guide to uninstall

Related