Oracle 11g is a powerful relational database management system (RDBMS) that is widely used in enterprise-level applications. This article will explain how to install Oracle 11g on a Linux system.
First, make sure the system meets the following basic requirements:
Next, we need to do some pre-installation settings. First, create a new group and user for the Oracle user:
sudo groupadd oinstall sudo groupadd dba sudo useradd -g oinstall -G dba oracle
Next, we need to install some necessary dependencies. Use the following command to install dependencies:
sudo apt-get install gcc make binutils x11-utils libaio-dev -y
During the installation process, you may be prompted to install additional dependencies. Please follow the prompts.
Now, we need to download the installation file of Oracle 11g. You can download it from Oracle's official website. Once the download is complete, unzip the file into a folder.
unzip linux.x64_11gR2_database_1of2.zip unzip linux.x64_11gR2_database_2of2.zip
After unzipping, you will get a folder named "database" which contains the installation files of Oracle 11g and other necessary files.
Next, open a terminal and execute the following command under the root user to start the graphical installer:
xhost + sudo su ./runInstaller
After starting the installer, you will enter a GUI interface. In this interface you need to perform the following operations:
Next, you need to make some settings:
Next, you need to do some additional configuration:
Next, you need to perform some additional installation:
After the installation is complete, you need to make some additional settings:
export ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1/ export ORACLE_SID=orcl export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH export PATH=$ORACLE_HOME/bin:$PATH
sqlplus / as sysdba startup
netca
During this process, you need to enter the following information:
lsnrctl start
Now, Oracle 11g has been successfully installed on your Linux system . You can use the Oracle command line tool sqlplus to connect to your database and start using it.
The above is the detailed content of How to install Oracle 11g on Linux system. For more information, please follow other related articles on the PHP Chinese website!