博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle单实例12.2.0.1安装
阅读量:5957 次
发布时间:2019-06-19

本文共 4003 字,大约阅读时间需要 13 分钟。

说明:本文描述oracle linux 6.8 安装 oracle 12.2.0.1

0. 查看操作系统版本

[root@12c01 ~]# cat /etc/os-release 

NAME="Oracle Linux Server" 
VERSION="6.8"

1. 修改用户的SHELL的限制,vi /etc/security/limits.conf 文件,文件末尾添加修改如下

oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft stack 10240

2. 修改linux内核,修改 /etc/sysctl.conf 文件

vi /etc/sysctl.conf 文件并添加如下内容:
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 2097152
kernel.shmmax = 4294967295
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
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
或者kernel.shmall和kernel.shmmax的默认值已经超过上述值,使用默认值即可。
修改生效
[root@12c01 ~]# /sbin/sysctl -p

3. 创建用户
/usr/sbin/groupadd -g 54321 oinstall
/usr/sbin/groupadd -g 54322 dba
/usr/sbin/groupadd -g 54323 oper
/usr/sbin/groupadd -g 54324 backupdba
/usr/sbin/groupadd -g 54325 dgdba
/usr/sbin/groupadd -g 54326 kmdba
/usr/sbin/groupadd -g 54327 asmdba
/usr/sbin/groupadd -g 54328 asmoper
/usr/sbin/groupadd -g 54329 asmadmin
/usr/sbin/groupadd -g 54330 racdba
/usr/sbin/useradd -u 54321 -g oinstall -G dba,asmdba,oper oracle
/usr/sbin/useradd -u 54322 -g oinstall -G asmdba,asmadmin grid

4. 确认用户:

[root@12c01 ~]# id oracle
uid=54321(oracle) gid=54321(oinstall) groups=54321(oinstall),54322(dba),54323(oper),54327(asmdba)
[root@12c01 ~]# id grid
uid=54322(grid) gid=54321(oinstall) groups=54321(oinstall),54327(asmdba),54329(asmadmin)

5. 修改密码:让你输入密码,密码任意输入2次,但必须保持一致,回车确认

[root@12c01 ~]# passwd oracle
Changing password for user oracle.
New password: 
BAD PASSWORD: it is based on a dictionary word
BAD PASSWORD: is too simple
Retype new password: 
passwd: all authentication tokens updated successfully.
[root@12c01 ~]# passwd grid
Changing password for user grid.
New password: 
BAD PASSWORD: it is too short
BAD PASSWORD: is too simple
Retype new password: 
passwd: all authentication tokens updated successfully.

6. 创建目录结构:

mkdir -p /home/oracle/app/oracle/product/12.2.0/dbhome_1 
mkdir -p /home/oracle/app/oradata
chown -R oracle:oinstall /home/oracle/

7. 设置oracle用户的环境变量:

#vi .bash_profile
--将如下代码添加到.bash_profile文件中: 
# Oracle Settings 
umask 022
export TMP=/tmp; 
export TMPDIR=$TMP; 
export ORACLE_BASE=/home/oracle/app/oracle;
export ORACLE_HOME=$ORACLE_BASE/product/12.2.0/dbhome_1;
export ORACLE_SID=andycdb; 
export ORACLE_TERM=xterm; 
export PATH=/usr/sbin:$PATH; 
export PATH=$ORACLE_HOME/bin:$PATH; 
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; 
export CLASSPATH=$ORACLE_HOME/jre:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;

8.检查 /etc/hosts 文件确认是否添加主机名和域名全称

[root@12c01 ~]# cat /etc/hosts
127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4
::1 localhost localhost.localdomain localhost6 localhost6.localdomain6
10.100.25.16 12c01

9. 将Oracle安装包(以64位为例)复制到linux的home目录下,打开终端命令行界面,运行unzip命令解压oracle安装文件。

输入命令:
[oracle@12c01 ~]$ ll
total 3372760
drwxr-xr-x. 4 oracle oinstall 4096 May 6 03:31 app
-rw-r--r--. 1 oracle oinstall 3453696911 May 6 03:38 linuxx64_12201_database.zip
[oracle@12c01 ~]$ du -h linuxx64_12201_database.zip 
3.3G linuxx64_12201_database.zip
[oracle@12c01 ~]$ unzip linuxx64_12201_database.zip

PRVF-0002 : could not retrieve local node name

解压完成后 cd 进入其解压后的目录database

输入命令:
cd database
执行安装
输入命令:
./runInstaller

缺包,自行补包。

 

root执行完点击ok,12c软件安装结束。

dbca 建库。

[oracle@12c01 database]$ dbca

[oracle@12c01 ~]$ sqlplus / as sysdba

SQL*Plus: Release 12.2.0.1.0 Production on Sat May 6 06:48:50 2017

Copyright (c) 1982, 2016, Oracle. All rights reserved.

Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production

SQL> select name,cdb from v$database;

NAME CDB

--------- ---
ANDYCDB YES

SQL> show pdbs

CON_ID CON_NAME OPEN MODE RESTRICTED

---------- ------------------------------ ---------- ----------
2 PDB$SEED READ ONLY NO
3 PDB01 READ WRITE NO

 

文章可以转载,必须以链接形式标明出处。
分类:  ,
本文转自 张冲andy 博客园博客,原文链接:  http://www.cnblogs.com/andy6/p/6814837.html
 ,如需转载请自行联系原作者
你可能感兴趣的文章
Oracle Cursor的使用
查看>>
SQL Server 2008 (R2) 单机版安装的先决条件
查看>>
js setTimeout 与 setInterval 以及 for 循环 刷新UI
查看>>
Samsung_tiny4412(驱动笔记07)----spinlock,semaphore,atomic,mutex,completion,interrupt
查看>>
substring 在C#,Javascript,SQL 中index开始值
查看>>
抽象工厂模式
查看>>
Android SDK镜像的介绍使用【转发】
查看>>
apt-get方式安装lnmp环境
查看>>
ubuntu 安装 qt等软件
查看>>
js模态窗口
查看>>
LayoutInflater的infalte()
查看>>
TCP粘包, UDP丢包, nagle算法
查看>>
POJ 3280 Cheapest Palindrome (DP)
查看>>
投递外刊引用自己的文章该注意什么
查看>>
文本 To 音频
查看>>
UVA 644 Immediate Decodability (字符处理)
查看>>
项目总结—jQuery EasyUI- DataGrid使用
查看>>
使用智能移动设备访问Ossim制
查看>>
39. Volume Rendering Techniques
查看>>
AVD启动不了 ANDROID_SDK_HOME is defined but could not find *.ini
查看>>