To install the Oracle Database XE (Express Edition) server on an Ubuntu Linux system, you can follow these steps:
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.
Install the dependencies for the Oracle Database XE server by running the following command:
sudo apt-get install libaio1Source:wwl.wautturi.com
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.
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
).
sudo service oracle-xe start
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.