oracle 11g   for redhat 64

环境:

(1)  Linux localhost.localdomain 2.6.32-358.el6.x86_64 #1 SMP Tue Jan 29 11:47:41                EST 2013 x86_64 x86_64 x86_64 GNU/Linux

(2)  内存:2G

(3)  硬盘容量:30G

(4)  系统必须为有桌面

(5)  YUM自己提前配好哦

(6)  如果在虚拟机上操作,提前先做镜像,在执行以下步骤之前。

步骤:

#!/bin/bash

for i in `cat 1.txt`;

do

yum install -y $i

done

#

groupadd oinstall

groupadd dba

#

mkdir -p /opt/app

useradd -g oinstall -G dba -d /opt/app/u01 oracle

#

sh mkdi.sh

#useradd -g oinstall -G dba -d /opt/app/u01 oracle

#

echo "123456"|passwd --stdin oracle

#

cp /etc/sysctl.conf /etc/sysctl.conf.bak

#

for i in `cat 2.txt`;

do

echo $? >> /etc/sysctl.conf

done

#

sysctl -p

#

cp /etc/security/limits.conf /etc/security/limits.conf.bak

#

echo "oracle              soft    nproc   2047" >>/etc/security/limits.conf

echo "oracle              hard    nproc   16384" >>/etc/security/limits.conf

echo "oracle              soft    nofile  1024" >>/etc/security/limits.conf

echo "oracle              hard    nofile  65536" >> /etc/security/limits.conf

echo "oracle              soft    stack   10240" >>/etc/security/limits.conf

#

echo "export ORACLE_BASE=/opt/app/product" >>/opt/app/u01/.bash_profile

echo "export ORACLE_HOME=/opt/app/product/software" >>/opt/app/u01/.bash_profile

echo "export ORACLE_SID=keyman" >>/opt/app/u01/.bash_profile

echo "PATH=$PATH:$ORACLE_HOME/bin">>/opt/app/u01/.bash_profile

#

chown oracle:oinstall /opt/*

注意:以上可以写在一个脚本内,一次性执行完毕。

完成以上以后,重启到oracle桌面用户,解压2个oracle的文件

#unzip linux.x64_11gR2_database_1of2

#unzip linux.x64_11gR2_database_2of2

在完成以上动作后,得到一个database的文件夹,进入到database里面:

#./runInstaller     执行里面这个文件

注意: 把Oracle Base:  /opt/app/product

Software Location:  /opt/app/product/software

剩下的全部默认即可,下一步,下一步即可。

到了检查软件包的那一步,就ignore all,在前面的步骤中,我们已经全部安装了,

即使它还是说没有安装,不用管它,是版本不一样而已,其实已经安装了。

最后finished,结束,退出即可。

到目前,为止,歇一口气,我们只是把oracle软件安装上了,还没有安装oracle数据库和监听listener.

完成上述步骤,继续做:

#netca     配置监听,一步一步做,全部默认。

完成之后:

#dbca      配置数据库 ,如果这个命令不识别,那就/opt/app/product/software/bin/dbca就可以

下一步,下一步的做就行,配置密码时,可以写123qweQWE,继续下一步。

等待35之后,数据库完成,接下来测试一下:

简单验证

[[email protected] ~]$ sqlplus "/ as sysdba"

SQL*Plus: Release 11.2.0.1.0 Production on Sat Jan 24 14:51:10 2015

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

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> create table z_test(id number,name varchar(20));

Table created.

SQL> insert into z_test select 1,‘a‘ from dual;

1 row created.

SQL> select * from z_test;

ID NAME

---------- ----------------------------------------

1 a

SQL> commit;

Commit complete.

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

[[email protected] ~]$

时间: 2024-10-11 11:11:11

oracle 11g   for redhat 64的相关文章

Oracle 11G for redhat 自启动脚本

在$ORACLE_HOME/bin中,有dbstart和dbshut这两个脚本,可以使用这两个oracle自带的脚本实现oracle的开机自启动.这个脚本中包含oraclelistener.instance.asm instances的启动,同样dbshut也是起到关闭服务的作用. 方法一:使用/etc/rc.local系统开机启动脚本,启动oracle 配置系统使dbstart和dbshut脚本起作用: 1).以root编辑/etc/oratab, orcl:/home/oracle/app/

Oracle 11g随Redhat 5系统自动启动与关闭的设置方法

最近,ORACLE系统基本调试通过,是时候设置ORACLE随RHEL自动启动与关闭服务的时候了,之所以把这个任务放在最后来做,是因为我觉得这个应该不会很难,但真正实施起来,还是遇到了个不小的障碍:写好脚本,注册好服务之后,经测试,ORACLE可以随RHEL启动而启动,但不能随系统关闭而关闭.在网上找答案,发现几乎所有的设置过程帖子都是从同一篇原样照抄过来的,根本就行不通.天下文章一大抄.求助他人,没有得到一个好的解决方案.无奈,自己静下心来慢慢研究分析,总算找到了问题的关键原因所在. 现在就把我

(转)Oracle 11g R2 for Win7旗舰版(64位)的安装步骤

1.下载Oracle 11g R2 for Windows的版本 下载地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/index.html 其中包括两个压缩包:win64_11gR2_database_1of2.zip,win64_11gR2_database_2of2.zip 2.将两个压缩包解压到同一个目录下,即“database”,然后单击解压目录下的“setup.exe”文件: 3.在出

windows7 64位 安装oracle 11g R2 过程

1.下载Oracle 11g R2 for Windows的版本 下载地址: http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html 其中包括两个压缩包:win64_11gR2_database_1of2.zip,win64_11gR2_database_2of2.zip 2.将两个压缩包解压到同一个目录下,即"database"目录下,然后

【转载】Oracle 11g R2 for Win7旗舰版(64位)- 安装

免责声明:     本文转自网络文章,转载此文章仅为个人收藏,分享知识,如有侵权,请联系博主进行删除.     原文作者:bluepoint2009      原文地址:http://www.cnblogs.com/bluepoint2009/p/oracle-11g-R2-win7-64bit.html 1.下载Oracle 11g R2 for Windows的版本                                    下载地址:http://www.oracle.com/t

oracle 11g R2 标准版 64位linux安装

安装环境: Redhat es 5.5 64位 ,系统内存8G,swap 10G ,oracle 11G R2 标准版 一,Oracle 安装前的准备 检查一下包,必须全部安装: binutils-2.17.50.0.6 compat-libstdc++-33-3.2.3 compat-libstdc++-33-3.2.3 (32 bit) elfutils-libelf-0.125 elfutils-libelf-devel-0.125 gcc-4.1.1 gcc-c++-4.1.1 glib

RedHat 6.4 Enterprise x64环境下使用RHCS部署Oracle 11g R2双机HA

环境 软硬件环境 硬件环境: 浪潮英信服务器NF570M3两台,华为OceanStor 18500存储一台,以太网交换机两台,光纤交换机两台. 软件环境: 操作系统:Redhat Enterprise Linux 6.7 x64 集群环境:RHCS 数据库:Oracle 11g R2 多路径软件:UltraPath for Linux 存储划分 类型 卷 大小 挂载点 用途 备注 内置硬盘 标准 500MB /boot 启动分区 两块内置硬盘作RAID1 LVM 20GB /home 用户分区

Oracle 11g R2 for Win7旗舰版(64位)的安装步骤

数据库有好多版本,我应该学习哪个? 万物一理,数据库的版本虽然多,本质是一样的,变化的只是表象,你是oracle7的专家,一定也是oracle11g的专家.Oracle数据库越来越受欢迎,下面介绍一下Oracle 11g R2 for Win7旗舰版(64位)的安装步骤: 1. 下载Oracle 11g R2 for Windows的版本 下载地址:http://www.oracle.com/technetwork/database/enterprise-edition/downloads/in

oracle 11g R2 64位 安装详细步骤

(oracle 11g R2 64位 + PLSQLDeveloper安装说明以及PLSQL Developer+ ORCALE11-instantclient-basic-win32-11.2.0.1.0连接oracle 11g R2 64位详细步骤) 第一步: 准备工具 1.oracle 11g R2 64位安装包 2.PLSQL Developer v11.0.2.1766 官方中文版(内含PLSQL Developer安装程序.汉化程序.PLSQL Developer注册程序.PLSQL