一.安装前检查 [root@localhost ~]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 6.5 (Santiago) [root@localhost ~]# uname -a Linux localhost.localdomain 2.6.32-431.el6.x86_64 #1 SMP Sun Nov 10 22:19:54 EST 2013 x86_64 x86_64 x86_64 GNU/Lin…
一.Oracle安装部署 1.1 单机环境 1.2 Oracle RAC环境 1.3 Oracle DataGuard环境 1.4 主机双机 1.5 客户端部署 二.Oracle版本升级 2.1 单机环境 2.2 Oracle RAC环境 2.3 Oracle DataGuard环境 2.4 主机双机 三.Oracle应用补丁 3.1 单机环境 3.2 Oracle RAC环境 3.3 Oracle DataGuard环境 3.4 主机双机 说明:本文汇总Oracle安装部署,版本升级,应用补丁…
一. 部署环境步骤 1.1 软件环境 操作系统:CentOS release 6.5oracle安装包:linux.x64_11gR2_database_1of1.zip:linux.x64_11gR2_database_1of2.zip 1.2 配置主机名 # vim /etc/sysconfig/network HOSTNAME= oracle235 # 或者执行 hostname oracle235 1.3 配置网络 # vim /etc/hosts 192.168.1.235 oracl…
一 环境准备 图形界面:略 安装包: linux.x64_11gR2_database_1of2.zip linux.x64_11gR2_database_2of2.zip 二 安装ASM-Oracle准备 2.1 用户名/组建立 [root@localhost ~]#hostnamectl set-hostname oracle [root@oracle ~]# vi /etc/hosts 172.24.8.30 oracle #将localhost修改为相应的主机名 [root@oracle…
一 环境准备 安装包:linux.x64_11gR2_database_1of2.zip linux.x64_11gR2_database_2of2.zip 二 安装Oracle准备 2.1 用户名/组建立 [root@oracle ~]# vi /etc/hosts 172.24.8.30 oracle #将localhost修改为相应的主机名 [root@oracle ~]# groupadd oinstall #创建用户组oinstall [root@oracle ~]# groupadd…
准备工作:通过ftp工具上传oracle安装软件到linux系统/mnt目录下,并通过unzip命令解压软件.------------------------------------------------------------------------------------------------------------------------------------------------------------1.创建oracle图形界面安装前脚本(root用户操作),按如下方法操作即可…
1.下载安装包 到oracle官网downloads下下载(第一次下载需要注册账号). Win7 64位下载64位oracle11g安装包 Win7 32位下载32位oracle11g(Oracle_win32_11gR2_database)安装包(本处使用版本) 2.安装oracle11gR2数据库 解压缩oracle11g安装文件,在安装目录下找到可执行文件setup.exe 双击可执行文件setup.exe,运行oracle11g安装过程.如下图 所有更新操作.电子邮件选项都不选,然后点击…
硬件配置 内存 :≥1G 硬盘空间:≥10G 上传oracle11g安装包: putty上用wcw用户登录,通过ftp服务上传oracle安装文件到/home/wcw目录下解压 #unzip linux_11gR2_database_1of2.zip #unzip linux_11gR2_database_2of2.zip 检查和安装oracle数据安装所需要的软件包: binutils-2.17.50.0.6-14.el5 compat-libstdc++-33-3.2.3-61 elfuti…
#!/bin/bash#Purpose:Create and config oracle install.#Usage:Log on as the superuser('root') #1.create groups and users.groupadd dba -g 111groupadd oinstall -g 110useradd oracle -u 110 -g 110 -G 111echo "oracle" | passwd --stdin oracle echo "…
#!/bin/bash#Purpose:Create and config oracle install.#Usage:Log on as the superuser('root') #1.create groups and users.groupadd dba -g 111groupadd oinstall -g 110useradd oracle -u 110 -g 110 -G 111echo "oracle" | passwd --stdin oracle echo "…