Ubuntu Linux Install Oracle Database XE Server

Ubuntu Linux Install Oracle Database XE Server

To install the Oracle Database XE (Express Edition) server on an Ubuntu Linux system, you can follow these steps:

  1. Download the Oracle Database XE installation package from the Oracle website. The installation package is a .deb file that can be installed using the dpkg package manager.

  2. Install the dependencies for the Oracle Database XE server by running the following command:

sudo apt-get install libaio1
Source:ww‮l.w‬autturi.com
  1. Install the Oracle Database XE server by running the following command:
sudo dpkg -i oracle-xe_18c-1.0-1_amd64.deb

Replace oracle-xe_18c-1.0-1_amd64.deb with the name of the .deb file that you downloaded.

  1. Run the Oracle Database XE configuration script by running the following command:
sudo /etc/init.d/oracle-xe configure

This will prompt you to enter a password for the Oracle Database XE system user (system), set the port number for the Oracle Database XE listener (1521), and set the password for the Oracle Database XE database administrator (sys).

  1. Start the Oracle Database XE server by running the following command:
sudo service oracle-xe start
  1. Test the Oracle Database XE server by connecting to it using the sqlplus command-line utility. You can do this by running the following command:
sqlplus sys/<password>@localhost:1521/XE as sysdba

Replace <password> with the password that you set for the Oracle Database XE database administrator (sys).

You can find more information about installing and using the Oracle Database XE server on Ubuntu Linux systems in the Oracle Database XE documentation or by searching online.

Created Time:2017-10-30 14:27:25  Author:lautturi