博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle 11g for redhat 64
阅读量:7067 次
发布时间:2019-06-28

本文共 3131 字,大约阅读时间需要 10 分钟。

环境:  

        (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的文件

      wKiom1Ythg3A4CcqAAA7c1sPaSk580.jpg

#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之后,数据库完成,接下来测试一下:

简单验证

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

本文转自 曾国藩_6868 51CTO博客,原文链接:http://blog.51cto.com/8184069/1706268

转载地址:http://vjall.baihongyu.com/

你可能感兴趣的文章
假装用某米赛尔号的角度看Python面向对象编程
查看>>
RGBA和OPACITY的区别&DISPLAY和VISIBILITY的区别
查看>>
膨胀的template class成员函数
查看>>
Flask之flask-mail邮件发送
查看>>
Immutable
查看>>
要提高团队代码质量,就要这么用Git进行版本控制!
查看>>
[LeetCode] 702. Search in a Sorted Array of Unknown Size
查看>>
常用的ES6
查看>>
高级 Vue 组件模式 (5)
查看>>
Nginx负载均衡配置及策略
查看>>
Node 框架接入 ELK 实践总结
查看>>
julia学习笔记:元编程-表达式
查看>>
vector中erase的用法
查看>>
redux, koa, express 中间件实现对比解析
查看>>
vue动态绑定图片和背景图
查看>>
nodejs最酷炫的模块——child_process - 子进程
查看>>
一键下载:将知乎专栏导出成电子书
查看>>
专栏开篇序——那些年我们用过的“轮子”
查看>>
QQ跳转支付宝领红包,一步到位,无需调用浏览器~附源码和演示动图
查看>>
125. 验证回文串
查看>>