Skip to main content

Installation

Installation Prerequisites Operating System Requirements

Windows/Linux/Unix

Required disk space: 2GB minimum

Memory: 1GB minimum

System privileges

Network connectivity

Installation Steps Download Oracle Client:

bash
# Linux
wget https://download.oracle.com/otn_software/linux/instantclient/oracle-instantclient-basic-linux.zip
# Windows
# Download from Oracle Technology Network (OTN)

Install Instant Client (Linux):

bash




# Create installation directory
mkdir -p /opt/oracle
cd /opt/oracle
# Extract files
unzip oracle-instantclient-basic-linux.zip
# Set environment variables
echo "export ORACLE_HOME=/opt/oracle/instantclient_19_x" >> ~/.bashrc
echo "export LD_LIBRARY_PATH=\$ORACLE_HOME:\$LD_LIBRARY_PATH" >> ~/.bashrc
echo "export PATH=\$ORACLE_HOME:\$PATH" >> ~/.bashrc
source ~/.bashrc

Install Full Client:

bash
# Run installer
./runInstaller -silent -responseFile client.rsp