Installing Oracle 19c On RHEL 9 - Ravindra's Blog
Installing Oracle 19c On RHEL 9 - Ravindra's Blog
3. Verify Installation
Once the OS is installed, log in to the machine and run the following commands to
verify the system setup:
Limit processes:
oracle soft nproc 2047
oracle hard nproc 16384
Limit file descriptors:
oracle soft nofile 1024
oracle hard nofile 65536
Limit stack size:
oracle soft stack 10240
oracle hard stack 10240
Lock memory in RAM:
oracle soft memlock 134217728
oracle hard memlock 134217728
ulimit -l
source ~/.bash_profile
echo $ORACLE_HOME
echo $ORACLE_SID
echo $PATH
echo $LD_LIBRARY_PATH Or use:
env | grep ORA
unzip LINUX.X64_193000_db_home.zip
unzip p6880880_190000_Linux-x86-x64.zip
ls -ld Opatch
unzip patch_file_name.zip
export DISPLAY=machine_name:0.0
export CV_ASSUME_DISTID=OL8
Conclusion
Following these steps, you’ve successfully installed Oracle Linux 9, set up the Oracle
Database 19c environment, applied necessary patches, and created your database. By
carefully configuring the server, setting appropriate permissions, and establishing
environment variables, you’ve laid the foundation for a stable and efficient Oracle Database
instance.
From verifying your installation to creating the database, each step ensures that your Oracle
environment is properly prepared and optimized for performance. Whether you’re using this
setup for development, testing, or production, this guide provides a solid, step-by-step
framework for installing and configuring Oracle Database 19c on Oracle Linux 9.
Now that the installation is complete, you’re ready to start working with Oracle DB,
managing databases, and running enterprise-level applications. Always remember to
regularly check for patches and updates to keep your environment secure and efficient.
Leave a Reply
Your email address will not be published. Required fields are marked *
Comment *
Name *
Email *
Website
Save my name, email, and website in this browser for the next time I comment.
Post Comment
Ravindra's Blog