oracle 11g for redhat 下载,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的文件

dc5f96c4a552c77d3e12e1caa0c93bf5.png

#unzip linux.x64_11gR2_database_1of2

#unzip linux.x64_11gR2_database_2of2

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

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

242e2a9c81c15dd2249f5455be76ba46.png

87c9ac38de80f911dc4471227bd63348.png

581f7c03aa31623c1ffa3ff7a1b61587.png

1f36032762266db979e2858c6f512665.png

d8148e66c58b1d36d832934be0ac8fe0.png

1186c8b82624404cfa91c9a80daa6993.png

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

58fb7eea57d5abf362ef578dafe82aa3.png

1d0b6352bfc7a3a981e9552ca4a5c7f8.png

999dd7acdb28db1cbc46da00a3daaf13.png

ebfd3650a29c1e00c20fff2283786cbc.png

c85e76aa7d111f30fce6ad6d9b24334a.png

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

dd3f88b705ccdb9252031f92f41c4ebe.png

91d7227883735e0c25e4094ec03758b2.png

4932929ce273401d70c66acd59cf24d1.png

735331c0b6f97f45742a70fcd0a828c8.png

8ce73a61a5938406738c6dd605993c89.png

f6a8e40974d8a5ea36d818bb9f24e692.png

等待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 ~]$

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值