Oracle Database 12c Release 2安装过程实录

时间:2021-09-21 16:21:52

 

前言----------公司数据库用的是oracle,由于oracle数据库没有做监控,所有搭个环境用于测试zabbix通过orabbix插件监控oracle数据库,下面先搭建oracle数据库。

简单介绍

ORACLE 数据库系统是美国ORACLE公司( 甲骨文)提供的以 分布式数据库为核心的一组软件产品,是目前最流行的客户/服务器(CLIENT/SERVER)或B/S 体系结构的数据库之一。比如SilverStream就是基于数据库的一种中间件。ORACLE数据库是目前世界上使用最为广泛的 数据库管理系统,作为一个通用的数据库系统,它具有完整的 数据管理功能;作为一个关系数据库,它是一个完备关系的产品;作为分布式数据库它实现了 分布式处理功能。但它的所有知识,只要在一种机型上学习了ORACLE知识,便能在各种类型的机器上使用它。
Oracle数据库最新版本为Oracle Database 12c。Oracle数据库12 c 引入了一个新的多承租方架构,使用该架构可轻松部署和管理数据库云。此外,一些创新特性可最大限度地提高资源使用率和灵活性,如Oracle Multitenant可快速整合多个数据库,而Automatic Data Optimization和Heat Map能以更高的密度压缩数据和对数据分层。这些独一无二的技术进步再加上在可用性、安全性和大数据支持方面的主要增强,使得Oracle数据库12 c 成为私有云和公有云部署的理想平台。
废话不多说直接开撸~~~~~
系统环境:
[oracle@oracle ~]$ cat /etc/redhat-release 
CentOS release 6.9 (Final)
[oracle@oracle ~]$ uname -a
Linux oracle 2.6.32-696.el6.x86_64 #1 SMP Tue Mar 21 19:29:05 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

下载Oracle数据库:

地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/oracle12c-linux-12201-3608234.html

1、勾选Accept License Agreement

Oracle Database 12c Release 2安装过程实录

2、点击File下载

Oracle Database 12c Release 2安装过程实录

 

3、弹出用户登录界面需要登录才能下载,没有账号就注册一个

 Oracle Database 12c Release 2安装过程实录

 4.下载完成后的安装包如下

Oracle Database 12c Release 2安装过程实录

5、通过FTP上传到系统里我的路径是/application/tools下

Oracle Database 12c Release 2安装过程实录

6、系统上查看已经存在

[root@oracle ~]# cd /application/tools/
[root@oracle tools]# ll
total 3381964
drwxr-xr-x. 9 root   root         4096 Mar 23 13:11 apache-tomcat-8.0.50
-rw-r--r--. 1 root   root      9417189 Feb  7 12:52 apache-tomcat-8.0.50.tar.gz
drwxr-xr-x. 7 oracle oracle       4096 Jan 26  2017 database
-rw-r--r--. 1 root   root   3453696911 Apr 11 00:15 linuxx64_12201_database.zip
[root@oracle tools]# pwd
/application/tools

 7、安装依赖包

[root@oracle tools]# yum install gcc gcc-c++ ksh libaio-devel libstdc++-devel compat-libstdc++-33 compat-libcap1 -y

 8、添加oracle用户和oracle 组

[root@oracle tools]# useradd oracle
[root@oracle tools]# groupadd oracle
[root@oracle tools]# passwd oracle

9、由于我们是图形界面安装oracle数据库,我装的是minimal版系统,需再安装图形界面系统,已安装的网友可以忽略这步。

安装方法:http://www.cnblogs.com/Dev0ps/p/8795809.html

10、切换到oracle用户下

Oracle Database 12c Release 2安装过程实录

11、进入oracle安装包路径下,解压出一个名为database的目录

[root@oracle tools]# su oracle
[oracle@oracle tools]$ unzip linuxx64_12201_database.zip
[oracle@oracle tools]$ ls
apache-tomcat-8.0.50  apache-tomcat-8.0.50.tar.gz  database  linuxx64_12201_database.zip

12、运行runInstaller脚本

[oracle@oracle tools]$ cd database/
[oracle@oracle database]$ ./runInstaller 

 13、出现oracle安装界面

Oracle Database 12c Release 2安装过程实录

14、配置输入邮箱地址取消oracle支持,点击下一步

Oracle Database 12c Release 2安装过程实录

15、选择创建和配置新数据库,点击下一步

Oracle Database 12c Release 2安装过程实录

16、选择服务器类型,点击下一步

Oracle Database 12c Release 2安装过程实录

17、选择单实例安装,点击下一步

Oracle Database 12c Release 2安装过程实录

18、选择高级安装,自定义安装

Oracle Database 12c Release 2安装过程实录

19、选择企业版安装,点击下一步

Oracle Database 12c Release 2安装过程实录

20、指定安装目录,默认安装就好注意空间要足够

Oracle Database 12c Release 2安装过程实录