我的编程空间,编程开发者的网络收藏夹
学习永远不晚

oracle 11g for redhat 64

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

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)  如果在虚拟机上操作,提前先做镜像,在执行以下步骤之前。

步骤:

cat 1.txt

 binutils gcc gcc-c++ gcc-32bit gcc43 gcc43-32bit glibc glibc-32bit glibc-devel glibc-devel-32bit ksh libaio libaio-devel libaio-devel-32bit libelf0 libelf1 libgcc43 libgcc43-32bit libstdc++33 libstdc++33-32bit libstdc++43 libstdc++43-32bit libstdc++43-devel libstdc++43-devel-32bit libstdc++-devel libgomp43-32bit make sysstat libcap unixODBC

然后:

执行脚本: sh install.sh

以下是脚本内容:

#!/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的文件


      oracle 11g   for  redhat 64

#unzip linux.x64_11gR2_database_1of2

#unzip linux.x64_11gR2_database_2of2

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

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

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

注意: 把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就可以

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

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

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

oracle 11g   for  redhat 64

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

简单验证

[oracle@powerlong4 ~]$ 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

[oracle@powerlong4 ~]$


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

oracle 11g for redhat 64

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

RedHat Linux5.5下Oracle 11g的详细安装教程

本篇内容主要讲解“RedHat Linux5.5下Oracle 11g的详细安装教程”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“RedHat Linux5.5下Oracle 11g的详细安装教
2023-06-10

安装Oracle 11g for Linux教程

linux安装Oracle11G本教程使用的环境是:1H2C2GCentos7 64位检查硬件环境内存要求>1GB(最好是2GB),交换内存大于物理内存的1.5倍,硬盘空间大于16GB。下面是通过root用户操作#查看当前的内存的使用,这个命令比较直观free
安装Oracle 11g for Linux教程
2015-12-02

Linux7 64安装 oracle 11g Error in invoking target 'agent nmhs' of makefile

在makefile中添加链接libnnz11库的参数修改$ORACLE_HOME/sysman/lib/ins_emagent.mk,将$(MK_EMAGENT_NMECTL)修改为:$(MK_EMAGENT_NMECTL) -lnnz11建议修改前备份原始文
2016-08-25

编程热搜

目录