返回顶部
首页 > 资讯 > 数据库 >如何安装oracle12c单实例数据库软件
  • 687
分享到

如何安装oracle12c单实例数据库软件

2024-04-02 19:04:59 687人浏览 安东尼
摘要

这篇文章主要介绍如何安装oracle12c单实例数据库软件,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!一、环境准备[oracle@localhost ~]$ df -hl 查看内存

这篇文章主要介绍如何安装oracle12c单实例数据库软件,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

一、环境准备

[oracle@localhost ~]$ df -hl 查看内存情况

磁盘空间需要6.4GB,/tmp分区需要1GB 

[oracle@localhost ~]$ df -hl /tmp 


内存配置4G,swap配置2G

[oracle@localhost ~]$ grep MemTotal /proc/meminfo

[oracle@localhost ~]$ cat /proc/swaps

操作系统:Red Hat Enterprise linux Server release 7

[oracle@localhost ~]$ cat /etc/redhat-release

安装包 yum -y install package*
把所有包安装

binutils-2.23.52.0.1-12.el7.x86_64 
compat-libcap1-1.10-3.el7.x86_64
compat-libstdc++-33-3.2.3-71.el7.i686 
compat-libstdc++-33-3.2.3-71.el7.x86_64
GCc-4.8.2-3.el7.x86_64 
gcc-c++-4.8.2-3.el7.x86_64 
glibc-2.17-36.el7.i686 
glibc-2.17-36.el7.x86_64 
glibc-devel-2.17-36.el7.i686 
glibc-devel-2.17-36.el7.x86_64 
ksh
libaio-0.3.109-9.el7.i686 
libaio-0.3.109-9.el7.x86_64 
libaio-devel-0.3.109-9.el7.i686 
libaio-devel-0.3.109-9.el7.x86_64 
libgcc-4.8.2-3.el7.i686 
libgcc-4.8.2-3.el7.x86_64 
libstdc++-4.8.2-3.el7.i686 
libstdc++-4.8.2-3.el7.x86_64 
libstdc++-devel-4.8.2-3.el7.i686 
libstdc++-devel-4.8.2-3.el7.x86_64 
libXi-1.7.2-1.el7.i686 
libXi-1.7.2-1.el7.x86_64 
libXtst-1.2.2-1.el7.i686 
libXtst-1.2.2-1.el7.x86_64 
make-3.82-19.el7.x86_64 
sysstat-10.1.5-1.el7.x86_64

查看组是否存在     

[root@localhost ~]# grep oinstall /etc/group

[root@localhost ~]# grep dba /etc/group

创建组oninstall 与 dba

[root@localhost ~]# /usr/sbin/groupadd oinstall

[root@localhost ~]# /usr/sbin/groupadd dba

[root@localhost ~]# /usr/sbin/groupadd oper

查看oracle用户 是否存在

[root@localhost ~]# id oracle

创建oracle用户

[root@localhost ~]# /usr/sbin/useradd -g oinstall -G dba,oper oracle

若已有oracle则报错存在

[root@localhost ~]# passwd oracle

为oracle创建密码

设置资源限制:

[root@localhost ~]# vi /etc/sysctl.conf

在文末添加:

fs.aio-max-nr = 1048576
fs.file-max = 6815744
#kernel.shmall = 2097152
#kernel.shmmax = 536870912
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 = 1048586

使更改生效

[root@localhost ~]# /sbin/sysctl -p

设置安装用户的资源限制:

[root@localhost ~]# vi /etc/security/limits.conf

在root下,添加

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

创建oracle安装目录并分配权限

[root@localhost ~]# mkdir /u01

[root@localhost ~]# chown -R oracle:oinstall /u01

[root@localhost ~]# chmod -R 775 /u01

为oracle用户设置环境变量

[li@localhost ~]$ su - oracle

PassWord:

[oracle@localhost ~]$

[oracle@localhost ~]$ vi ~/.bash_profile

# .bash_profile

# Get the aliases and functions

if [ -f ~/.bashrc ]; then

        . ~/.bashrc

fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

export PATH

export ORACLE_BASE=/u01/app/oracle

export ORACLE_HOME=$ORACLE_BASE/product/12.2.0/dbhome_1

export PATH=$ORACLE_HOME/bin:$PATH

export ORACLE_SID=db12c

export NLS_LANG=AMERICAN_AMERICA.AL32UTF8

如何切换到oracle用户

Su – oracle

在temp下创建oracle 然后把12c压缩包解压在里面

在oracle用户下

[li@localhost ~]$ su oracle

Password:

[oracle@localhost ]$ cd /u01/software/database

[oracle@localhost database]$ ls

install  response  rpm  runInstaller  sshsetup  stage  welcome.html

执行安装
[oracle@localhost database]$ ./runInstaller
1、弹出此界面,不勾选选项(如果有也可以填写)然后next

如何安装oracle12c单实例数据库软件

2、此处选择仅安装数据库软件,然后next如何安装oracle12c单实例数据库软件

3、选择安装单实例数据库,然后next如何安装oracle12c单实例数据库软件

4、选择安装企业版,然后next如何安装oracle12c单实例数据库软件
5、安装路径默认安装
6、默认安装 next如何安装oracle12c单实例数据库软件


7、组默认 next如何安装oracle12c单实例数据库软件


8、这里会检查是否有安装相关的包,可以新打开一个窗口yum安装包,然后检查
(这里检查的错误最好都想办法使得没有错误,不然在启动时会报错)如何安装oracle12c单实例数据库软件

9、点击install开始安装如何安装oracle12c单实例数据库软件

10、在root下执行两条脚本
如何安装oracle12c单实例数据库软件


[root@localhost ~]# /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@localhost ~]# /u01/app/oracle/product/12.2.0/dbhome_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.0/dbhome_1

Enter the full pathname of the local bin directory: [/usr/local/bin]:

   Copying dbhome to /usr/local/bin ...

   Copying oraenv to /usr/local/bin ...

   Copying coraenv to /usr/local/bin ...

Creating /etc/oratab file...

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.0/dbhome_1/install/root_localhost.localdomain_2018-04-30_07-56-19-938348191.log

Finished installing Oracle Trace File Analyzer (TFA)

执行完脚本,数据库软件安装完成

以上是“如何安装oracle12c单实例数据库软件”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注编程网数据库频道!

您可能感兴趣的文档:

--结束END--

本文标题: 如何安装oracle12c单实例数据库软件

本文链接: https://lsjlt.com/news/64417.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • 如何安装oracle12c单实例数据库软件
    这篇文章主要介绍如何安装oracle12c单实例数据库软件,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!一、环境准备[oracle@localhost ~]$ df -hl 查看内存...
    99+
    2024-04-02
  • 安装oracle12c数据库
    目录 安装文件下载         下载程序下载步骤 安装步骤 安装前提 图文步骤详情 安装文件下载         oracle官方下载地址:https://edelivery.oracle.com/https://edelivery...
    99+
    2023-08-31
    数据库 oracle java
  • Window下如何安装Oracle ASM单实例数据库
    小编给大家分享一下Window下如何安装Oracle ASM单实例数据库,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!实验环境 ...
    99+
    2024-04-02
  • ProxmoxVE 之 安装oracle12C 数据库(CDB和PDB)
      上面左边是我的个人微信,如需进一步沟通,请加微信。  右边是我的公众号“Openstack私有云”,如有兴趣,请关注。    前两天在PVE环境上搭建了...
    99+
    2024-04-02
  • 怎么安装单实例数据库Oracle 11G
    这篇文章主要介绍“怎么安装单实例数据库Oracle 11G”,在日常操作中,相信很多人在怎么安装单实例数据库Oracle 11G问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”...
    99+
    2024-04-02
  • 编译安装Mysql5.5数据库软件
    准备环境:Centos6.5(6系列操作系统)[root@localhost ~]# yum -y install gcc gcc-c++ ncurses-devel libxml2-devel zlib-...
    99+
    2024-04-02
  • RHEL7.3如何安装oracle12c 单点grid和rdbms
    小编给大家分享一下RHEL7.3如何安装oracle12c 单点grid和rdbms,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧...
    99+
    2024-04-02
  • 安装unxiodbc软件,连接oracle数据库
             安装unixodbc——以下操作在root用户下操作    安装过程和报错处理我是参考及引用网络上的资源,也结合了自己...
    99+
    2024-04-02
  • 如何通过克隆方式安装Oracle数据库软件
    这篇文章给大家分享的是有关如何通过克隆方式安装Oracle数据库软件的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。一、准备工作有时候,如果几个机器的配置相似,就不需要一遍又一遍地...
    99+
    2024-04-02
  • 4. Oracle12c数据库在Linux系统安装步骤
    部署环境 系统:CentOS Linux release 7.6 数据库:Oracle 12c 1. 修改主机名 2. 修改hosts文件 2.1 配置服务器ip地址 cd ...
    99+
    2023-09-06
    linux 运维 服务器 oracle dba Powered by 金山文档
  • Debain-9.13 安装 oracle 11.2.0.4 数据库database软件
    一切件oracle11g.sh,内容如下: #!/bin/sh ##gcc-6 ##debian-9.13,buildin glibc version is 2.24 ##################################...
    99+
    2014-12-06
    Debain-9.13 安装 oracle 11.2.0.4 数据库database软件 数据库入门 数据库基础教程 数据库 mysql
  • Debain-8.11 安装 oracle 12.2.0.1 数据库database软件
    自动化配置脚本oracle12c.sh,如下: #!/bin/sh ##gcc-4.9 ##debian-8.11,buildin glibc version is 2.19 ##############################...
    99+
    2019-05-07
    Debain-8.11 安装 oracle 12.2.0.1 数据库database软件 数据库入门 数据库基础教程
  • 如何安装Mongodb3.0.6单实例
    这篇文章将为大家详细讲解有关如何安装Mongodb3.0.6单实例,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。 [root@b28-17-5...
    99+
    2024-04-02
  • mysql5.6单实例如何安装
    这篇文章主要为大家展示了“mysql5.6单实例如何安装”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“mysql5.6单实例如何安装”这篇文章吧。 mysql...
    99+
    2024-04-02
  • 如何安装单机Oracle数据库静默
    本篇内容介绍了“如何安装单机Oracle数据库静默”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!一、&nb...
    99+
    2024-04-02
  • 大数据必备的数据库 MongoDB 3.6 安装、单机多实例
    MongDB 简介 MongoDB 是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。 MongoDB 是一个介于关系数据库和非关系数据库之间的产品,是...
    99+
    2024-04-02
  • linux7安装rac11.2.0.4 安装数据库软件选择不到节点
    解决方式如下: [root@ora02std ContentsXML]# pwd /u01/app/oraInventory/ContentsXML [root@ora02std ContentsXML]#...
    99+
    2024-04-02
  • oracle 12cR2单实例如何安装
    小编给大家分享一下oracle 12cR2单实例如何安装,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧![root@localho...
    99+
    2024-04-02
  • 安装oracle数据库以及解压安装glodengate软件的步骤
    本篇内容介绍了“安装oracle数据库以及解压安装glodengate软件的步骤”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细...
    99+
    2024-04-02
  • 如何安装weblogic软件
    这篇文章给大家分享的是有关如何安装weblogic软件的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。1.下载介质download.oracle.com2.编辑系统 jdk&nbs...
    99+
    2024-04-02
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作