Oracle 12c 单实例安装

时间:2023-03-09 04:34:23
Oracle 12c 单实例安装

一、准备工作

实验环境:Redhat 6.6   Oracle 12c 12.2.0.1

1、官网下载

https://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle12c-linux-12201-3608234.html?ssSourceSiteId=otncn

2、安装所需rpm包

# rpm -q binutils compat-libcap1 gcc-c++ compat-libstdc++- gcc gcc-c++e2fsprogs e2fsprogs-libs glibc glibc-devel ksh libaio-devel libaio libgcc libstdc++ libstdc++-devel libxcb libX11 libXau libXi libXtst make net-tools nfs-utils smartmontools sysstat

所需要镜像中都包含,所以可以通过本地yum方式进行安装

3、创建用户组

[root@RmanDB tools]# groupadd -g  oinstall
[root@RmanDB tools]# groupadd -g dba
[root@RmanDB tools]# groupadd -g oper

4、创建用户

[root@RmanDB tools]# useradd -u  -g oinstall -G dba,oper oracle

5、创建目录

mkdir -p /u01/app/oracle/product/12.2./db_1
[root@RmanDB tools]# chown -R oracle:oinstall /u01/app
[root@RmanDB tools]# chmod -R /u01/app

6、配置环境变量

配置oracle用户

vim .bash_profile
#ORACLE
PATH=$PATH:$HOME/bin
export PATH
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/12.2./db_1
export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/Apache/bin:$PATH
export ORACLE_SID=gnnt1
ORACLE_HOSTNAME=RmanDB
export ORACLE_OWNER=oracle
export ORACLE_TERM=vt100
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK
export DISPLAY=192.168.10.2:0.0

7、配置内核

注意:配置大于系统数据需要配置更改,否则不需要配置。

Oracle 12c 单实例安装

vim /etc/sysctl.conf
添加如下配置
#ORACLE fs.aio-max-nr =
fs.file-max =
kernel.sem =
kernel.shmmni =
kernel.shmall =
kernel.shmmax =
kernel.panic_on_oops =
net.ipv4.ip_local_port_range =
net.core.rmem_default =
net.core.rmem_max =
net.core.wmem_default =
net.core.wmem_max =

配置完成 sysctl -p 刷新生效

8、设置进程数和最大会话数

vi /etc/security/limits.conf

添加使用如下设置。
oracle soft nproc
oracle hard nproc
oracle soft nofile
oracle hard nofile
oracle soft stack
oracle hard stack

二、安装过程

1、解压

[root@RmanDB tools]# mkdir -p /u01/app/tmp
[root@RmanDB tools]# chown -R oracle:oinstall /u01/app/tmp
[root@RmanDB tools]# chmod -R 775 /u01/app/tmp
将下载的安装包解压
[oracle@RmanDB tmp]$ unzip /tools/linuxx64_12201_database.zip [oracle@RmanDB tmp]$ ll
total
drwxr-xr-x. oracle oinstall Jan database

2、执行安装

[oracle@RmanDB ~]$ /u01/app/tmp/database/runInstaller
Starting Oracle Universal Installer... Checking Temp space: must be greater than MB. Actual MB Passed
Checking swap space: must be greater than MB. Actual MB Passed
Checking monitor: must be configured to display at least colors
>>> Could not execute auto check for display colors using command /usr/bin/xdpyinfo. Check if the DISPLAY variable is set. Failed <<<< Some requirement checks failed. You must fulfill these requirements before continuing with the installation, Continue? (y/n) [n] y >>> Ignoring required pre-requisite failures. Continuing...
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2018--23_04--02PM. Please wait ... 

Oracle 12c 单实例安装

看你的需求选择是要只安装数据库软件还是软件+配置库

Oracle 12c 单实例安装

安装单实例

Oracle 12c 单实例安装

Oracle 12c 单实例安装Oracle 12c 单实例安装

Oracle 12c 单实例安装

Oracle 12c 单实例安装

Oracle 12c 单实例安装

如果检查出问题,请先解决再行安装否则可能安装失败

Oracle 12c 单实例安装

等待安装

Oracle 12c 单实例安装

使用root用户执行脚本

[root@RmanDB tmp]# /u01/app/oraInventory/orainstRoot.sh
Changing permissions of /u01/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world. Changing groupname of /u01/app/oraInventory to oinstall.
The execution of the script is complete. [root@RmanDB tmp]# /u01/app/oracle/product/12.2./db_1/root.sh
Performing root user operation. The following environment variables are set as:
ORACLE_OWNER= oracle
ORACLE_HOME= /u01/app/oracle/product/12.2./db_1 Enter the full pathname of the local bin directory: [/usr/local/bin]:
The contents of "dbhome" have not changed. No need to overwrite.
The contents of "oraenv" have not changed. No need to overwrite.
The contents of "coraenv" have not changed. No need to overwrite. Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.
Do you want to setup Oracle Trace File Analyzer (TFA) now ? yes|[no] :
yes
Installing Oracle Trace File Analyzer (TFA).
Log File: /u01/app/oracle/product/12.2./db_1/install/root_RmanDB_2018--23_16---.log
Finished installing Oracle Trace File Analyzer (TFA)

Oracle 12c 单实例安装

到此,数据库软件安装完成!