search
HomeDatabaseOracleHow to install oracle database on centos6.5 system

CentOS 6.5 is a very popular Linux operating system, and Oracle Database is a powerful database software well-known in the industry. In this article, we will discuss how to install Oracle database on CentOS 6.5 operating system.

Step 1: Preparation

Before starting to install Oracle, you need to make the following preparations:

Install the CentOS 6.5 operating system and configure the network connection.

Download and install the Oracle Database installation file through the official website.

Install other necessary software packages, such as binutils, compat-libstdc-33, elfutils-libelf, elfutils-libelf-devel, gcc, gcc-c, glibc, glibc-common, glibc-devel, libaio, libaio-devel, libgcc, libstdc, libstdc-devel, make, sysstat.

Step 2: Install the necessary software packages

Before you start installing the Oracle database, you need to install some necessary software packages. These packages can be installed on CentOS 6.5 with the following command:

yum install binutils compat-libstdc++-33 elfutils-libelf elfutils-libelf-devel gcc gcc-c++ glibc glibc-common glibc-devel libaio libaio-devel libgcc libstdc++ libstdc++-devel make sysstat

Step 3: Create Oracle User and Group

Before installing the Oracle database, you need to create a new user and group to run Oracle Services. You can use the following command to create a new user and group:

groupadd oinstall
groupadd dba
useradd -g oinstall -G dba -d /home/oracle oracle

After creating the user and group, you need to set the password of the Oracle user:

passwd oracle

Step 4: Configure kernel parameters

By default, the CentOS 6.5 operating system may not set the correct kernel parameters for the Oracle database. Therefore, you need to configure the following kernel parameters to ensure that the Oracle database can run normally:

kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 6815744
net.ipv4.ip_local_port_range = 9000 65500
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048576

You can use the following command to edit the /etc/sysctl.conf file and add the above parameters to the end of the file:

vi /etc/sysctl.conf

Finally, run the following command to activate the kernel parameters:

sysctl -p

Step 5: Configure the Oracle user environment variables

Now you need to configure the environment variables for the Oracle user. The .bash_profile file for an Oracle user can be edited using the following command:

vi /home/oracle/.bash_profile

Add the following variables at the end of the file:

export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export ORACLE_SID=orcl
export PATH=$PATH:$HOME/bin:$ORACLE_HOME/bin

Start a new terminal session or run the following command for immediate effect:

source /home/oracle/.bash_profile

Step 6: Install Oracle Database

Now that you have completed all the necessary preparations, you can start installing the Oracle database. Follow the steps below:

  1. Extract the installer into the /tmp directory using the following command:
unzip linux.x64_11gR2_database_1of2.zip -d /tmp
unzip linux.x64_11gR2_database_2of2.zip -d /tmp
  1. Run the following command to start the Oracle installer :
/tmp/database/runInstaller
  1. On the first screen, select the "Install Database Software" option and click "Next."
  2. Then, in the Select Installation Options screen, select the Create and configure a new database option and click Next.
  3. Next, on the Select System Class screen, select the Server Class option and click Next.
  4. On the Select Installation Type screen, select the Advanced Installation option and click Next.
  5. Then, on the Select Database Management Options screen, select the Typical Installation option and click Next.
  6. Next, on the Select Installation Location screen, select the database installation location and click Next.
  7. On the Specify Administration Options screen, select the Create database using batch process option and click Next.
  8. Then, on the Specify Database Identity screen, enter the SID and database password you want to use, and click Next.
  9. On the Specify Configuration Options screen, accept the default options and click Next.
  10. Next, on the "Installation Execution" screen, review your selected options and click the "Install" button to start the installation.
  11. When the installer is complete, on the Result Summary screen, after confirming that all components were successfully installed, click the Close button to exit the installer.

Step 7: Start Oracle Database

Now, you have successfully installed Oracle Database. You can use the following command to start the Oracle database:

/usr/local/oracle/product/11.2.0/dbhome_1/bin/sqlplus /nolog
SQL> conn / as sysdba
SQL> startup

At this point, you have successfully installed and started the Oracle database on CentOS 6.5. Now you can start creating and managing your own data in Oracle Database.

The above is the detailed content of How to install oracle database on centos6.5 system. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Oracle and MySQL: Exploring Data Management ApproachesOracle and MySQL: Exploring Data Management ApproachesMay 01, 2025 am 12:13 AM

Oracle is suitable for enterprise-level applications that require high performance and complex queries, and MySQL is suitable for web applications that are rapidly developed and deployed. 1. Oracle supports complex transaction processing and high availability, suitable for financial and large ERP systems. 2.MySQL emphasizes ease of use and open source support, and is widely used in small and medium-sized enterprises and Internet projects.

MySQL vs. Oracle: A Look at the User ExperienceMySQL vs. Oracle: A Look at the User ExperienceApr 30, 2025 am 12:12 AM

The differences in user experience between MySQL and Oracle are mainly reflected in: 1. MySQL is simple and easy to use, suitable for quick access and high flexibility scenarios; 2. Oracle has powerful functions, suitable for scenarios that require enterprise-level support. MySQL's open source and free features attract startups and individual developers, while Oracle's complex features and tools meet the needs of large enterprises.

MySQL and Oracle: Exploring Performance and ScalabilityMySQL and Oracle: Exploring Performance and ScalabilityApr 29, 2025 am 12:12 AM

The difference between MySQL and Oracle in performance and scalability is: 1. MySQL performs better on small to medium-sized data sets, suitable for fast scaling and efficient reading and writing; 2. Oracle has more advantages in handling large data sets and complex queries, suitable for high availability and complex business logic. MySQL extends through master-slave replication and sharding technologies, while Oracle achieves high availability and scalability through RAC.

What Oracle Software Does: Key Functions and FeaturesWhat Oracle Software Does: Key Functions and FeaturesApr 28, 2025 am 12:08 AM

Key features of Oracle software include multi-tenant architecture, advanced analytics and data mining, real-time application clustering (RAC), and automated management and monitoring. 1) A multi-tenant architecture allows for the management of multiple independent databases in one database instance, simplifying management and reducing costs. 2) Advanced analytics and data mining tools such as Oracle Advanced Analytics and OracleDataMining help extract insights from data. 3) Real-time application cluster (RAC) provides high availability and scalability, improving system fault tolerance and performance. 4) Automated management and monitoring tools such as Oracle EnterpriseManager (OEM) to automate daily maintenance tasks and monitor numbers in real time

Oracle's Impact: Data Management and BeyondOracle's Impact: Data Management and BeyondApr 27, 2025 am 12:11 AM

Oracle has a profound impact in the fields of data management and enterprise applications. Its database is known for its reliability, scalability and security, and is widely used in industries such as finance, medical care and government. Oracle's influence has also expanded to middleware and cloud computing fields such as WebLogicServer and OracleCloudInfrastructure (OCI), providing innovative solutions. Despite the competition in the open source database and cloud computing market, Oracle maintains its leading position through continuous innovation.

Oracle: Exploring the Company's Mission and ValueOracle: Exploring the Company's Mission and ValueApr 26, 2025 am 12:06 AM

Oracle's mission is to "help people see the value of data", and its core values ​​include: 1) Customer first, 2) Integrity, 3) Innovation, and 4) Teamwork. These values ​​guide Oracle's strategic decision-making and business innovation in the market.

Oracle's Core Function: Providing Database SolutionsOracle's Core Function: Providing Database SolutionsApr 25, 2025 am 12:06 AM

Oracle Database is a relational database management system that supports SQL and object relational models to provide data security and high availability. 1. The core functions of Oracle database include data storage, retrieval, security and backup and recovery. 2. Its working principle involves multi-layer storage structure, MVCC mechanism and optimizer. 3. Basic usages include creating tables, inserting and querying data; advanced usages involve stored procedures and triggers. 4. Performance optimization strategies include the use of indexes, optimized SQL statements and memory management.

Using Oracle Software: Database Management and BeyondUsing Oracle Software: Database Management and BeyondApr 24, 2025 am 12:18 AM

In addition to database management, Oracle software is also used in JavaEE applications, data grids and high-performance computing. 1. OracleWebLogicServer is used to deploy and manage JavaEE applications. 2. OracleCoherence provides high-performance data storage and caching services. 3. OracleExadata is used for high performance computing. These tools allow Oracle to play a more diversified role in the enterprise IT architecture.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),