RHEL6+oracle11.2 无界面化命令安装如下:

1.所需安装软件包检查:
yum install binutils-2.* compat-libcap1* compat-libstdc++-33-* gcc-4.*
gcc-c++-4.* glibc-2.* glibc-devel-2.* libgcc-4.* libstdc++-4.*
libstdc++-devel-4.* libaio-.* libaio-devel-0.* make-3.* sysstat-9.*
unixODBC-2.* unixODBC-devel-2.* libXp* pdksh-*
rpm -qa binutils compat-libstdc++ elfutils-libelf elfutils-libelf-devel gcc gcc-c++ glibc
rpm -qa glibc-common glibc-devel glibc-headers ksh libaio libaio-devel libgcc libstdc++ libstdc++-devel make numactl-devel sysstat

2.1oracle,grid用户创建:

groupadd oinstall
groupadd dba
useradd -m -g oinstall -G dba oracle
echo oracle | passwd --stdin oracle

3.用户变量配置:
Oracle用户环境变量:
Su – oracle
$ vi .bash_profile
umask 022
ORACLE_SID=testdb
ORACLE_BASE=/u01/app/oracle
ORACLE_HOME=$ORACLE_BASE/product/11.2.0.4.0/dbhome_1
PATH=$ORACLE_HOME/bin:$PATH
export NLS_LANG=AMERICAN_AMERICA.ZHS16GBK
export ORACLE_SID ORACLE_BASE ORACLE_HOME PATH

4.设置用户限制文件:
/etc/security/limits.conf
oracle soft nproc 2047
oracle hard nproc 16384
oracle soft nofile 1024
oracle hard nofile 65536
oracle soft stack 10240

5.用户login配置:
/etc/pam.d/login
session required pam_limits.so

6.设置系统全局变量:
/etc/profile
if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi

7.系统内核参数配置:

/etc/sysctl.conf
fs.aio-max-nr = 1048576
fs.file-max = 6815744
kernel.shmall = 4194304
kernel.shmmax = 536870912
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
net.ipv4.ip_local_port_range = 9000 65500 #1024 65000
net.core.rmem_default = 262144
net.core.rmem_max = 4194304
net.core.wmem_default = 262144
net.core.wmem_max = 1048586

# sysctl –p

net.ipv4.ip_forward = 0
net.ipv4.conf.default.rp_filter = 1
net.ipv4.conf.all.rp_filter=1
net.ipv4.conf.all.arp_announce = 2
net.ipv4.conf.all.arp_ignore = 1
net.ipv4.conf.default.accept_source_route = 0
kernel.sysrq = 0
kernel.core_uses_pid = 1
net.ipv4.tcp_syncookies = 1
kernel.msgmnb = 65536
kernel.msgmax = 65536
kernel.shmmax = 68719476736
kernel.shmall = 12884901888
net.ipv4.tcp_max_tw_buckets = 1000
net.ipv4.tcp_sack = 1
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_rmem = 4096 87380 4194304
net.ipv4.tcp_wmem = 4096 16384 4194304
net.core.wmem_default = 8388608
net.core.rmem_default = 8388608
net.core.rmem_max = 16777216
net.core.wmem_max = 16777216
net.core.netdev_max_backlog = 262144
net.core.somaxconn = 262144
net.ipv4.tcp_max_orphans = 3276800
net.ipv4.tcp_max_syn_backlog = 262144
net.ipv4.tcp_timestamps = 0
net.ipv4.tcp_synack_retries = 1
net.ipv4.tcp_syn_retries = 1
net.ipv4.tcp_retries2 = 5
net.ipv4.tcp_tw_recycle = 0
net.ipv4.tcp_tw_reuse = 0
net.ipv4.tcp_mem = 94500000 915000000 927000000
net.ipv4.ip_local_port_range = 1024 65535
net.ipv4.ip_local_reserved_ports = 8080-8081,11200-11211,6379-6389,10050-10051
net.nf_conntrack_max = 409600
net.netfilter.nf_conntrack_tcp_timeout_established = 600
net.netfilter.nf_conntrack_max = 409600
net.netfilter.nf_conntrack_buckets = 8192
net.netfilter.nf_conntrack_tcp_timeout_time_wait = 1

8.禁用防火墙,seliunx
service iptables stop
chkconfig iptables off

9.创建oracle安装目录及权限
mkdir -p /u01/app/oracle
chown -R oracle.oinstall /u01/app/oracle
chmod 775 /u01/app/oracle
mkdir -p /u01/app/oracle/oradata
chown -R oracle:oinstall /u01/app/oracle/oradata
chmod 775 /u01/app/oracle/oradata
mkdir -p /u01/app/oraInventory
chown -R oracle:oinstall /u01/app/oraInventory
chmod 775 /u01/app/oraInventory
mkdir -p /u01/app/oracle/product/11.2.0.4.0/dbhome_1
chown -R oracle:oinstall /u01/app/oracle/product/11.2.0.4.0/dbhome_1
chmod 775 /u01/app/oracle/product/11.2.0.4.0/dbhome_1

10.数据库软件静默安装方法:

解压安装包:
unzip p13390677_112040_Linux-x86-64_1of7.zip
unzip p13390677_112040_Linux-x86-64_2of7.zip
将解压后的安装文件database 拷到/u01/app/下面,或直接使用本目录下的rsp文件,进行修改

cp 51db_install.rsp /u01/app/database/response/
cp 51dbca.rsp /u01/app/database/response/

修改51db_install.rsp 51dbca.rsp 将里面SID,DBNAME,路径等等都修改好。 安装库目录为/u01/app/oracle/oradata 。

开始通过rsp响应文件安装oracle软件:

$ ./runInstaller -silent -force -responseFile /u01/app/database/response/51db_install.rsp

等一会儿,看提示。 根据提示,会让用root权限执行两个脚本。 最后出现成功后即可。

通过rsp响应文件建数据库:
vi 51dbca.rsp
静默安装实例【需要修改的地方】

在安装实例之前,先对dbca.rpt进行配置。配置项如下
GDBNAME = “testdb” (数据库的唯一标识)
SID = “testdb” (数据库实例名)
CHARACTERSET = “ZHS16GBK” (数据库字符集) --CHARACTERSET = “AL32UTF8” (更新,支持更多字符,支持9i及以上) --CHARACTERSET = “UTF8” (更旧,支持8i)
TOTALMEMORY = “10240” (数据库内存,现为10G,单位:MB)
如果要使用OEM则还要修改
EMCONFIGURATION=”LOCAL”,
SYSMANPASSWORD=“oracle”
DBSNMPPASSWORD=”oracle”
配置 好执行静默安装

开始安装数据库

/u01/app/oracle/product/11.2.0.4.0/dbhome_1/bin/dbca -silent -responseFile /u01/app/database/response/51dbca.rsp

根据提示输入两次密码。即可出现安装库的进度。

到此安装完成。

========================================================================================
创建监听:
监听配置: [都要加,服务端,客户端]
服务端:
cd /u01/app/oracle/product/11.2.0.4.0/dbhome_1/network/admin
vi listener.ora
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(GLOBAL_DBNAME = cleardb)
(ORACLE_HOME = /u01/app/oracle/product/11.2/db_1)
(SID_NAME = testdb)
)
)

LISTENER =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.**.**.**)(PORT = 1521))
)

客户端:
vi tnsnames.ora
TESTDB =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.**.**.**)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = testdb)
)
)

LISTENER_CLEARDB =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.**.**.**)(PORT = 1521))

启动监听lsnrct start

-bash-4.1$ lsnrctl status

LSNRCTL for Linux: Version 11.2.0.4.0 - Production on 27-APR-2015 18:37:07

Copyright (c) 1991, 2013, Oracle. All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.**.**.**)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 11.2.0.4.0 - Production
Start Date 27-APR-2015 17:58:52
Uptime 0 days 0 hr. 38 min. 15 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Log File /u01/app/oracle/diag/tnslsnr/localhost/listener/alert/log.xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521)))
Services Summary...
Service "autoa" has 1 instance(s).
Instance "autoa", status READY, has 1 handler(s) for this service...
Service "autoaXDB" has 1 instance(s).
Instance "autoa", status READY, has 1 handler(s) for this service...
The command completed successfully

oracle静默安装的更多相关文章

  1. Oracle 静默安装的db_install.rsp 文件

    Oracle 静默安装的db_install.rsp 文件,已修改好值 ################################################################ ...

  2. Oracle 静默安装 oracle 12c

    [oracle@local12cdg app]$ id oracleuid=501(oracle) gid=501(oinstall) groups=501(oinstall),502(dba)[or ...

  3. Oracle 静默安装oracle client

    静默安装oracle clint比较简单,修改instantclient.crsp文件的几个位置即可 [root@localhost ~]# vi /etc/oralnstloc inventory_ ...

  4. linux环境下oracle静默安装

    一.安装环境 1.linux版本:redhat6.3_x86_64 2.oracle版本:Oracle Database 11g Enterprise Edition Release 11.2.0.3 ...

  5. oracle静默安装完成后,重启数据库,错误ORA-01102: cannot mount database in EXCLUSIVE mode

    静默安装oracle完成后,登录数据库激活用户,无法更改,提示未载入数据库,关闭后重启报错: 1.找到安装目录下的$ORACLE_HOME/dbs/ 目录下,查看当前使用lkORCL文件的用户(fus ...

  6. oracle 静默安装

    下载oracle的安装包: 下载地址: 注意下载oracle是须要注冊oracle的 http://download.oracle.com/otn/nt/oracle11g 下载两个包: linux. ...

  7. Oracle静默安装-简单记录

    一.与图形界面安装一样,检查如下条件:新建用户.组创建安装目录配置环境变量检查安装依赖包修改内核参数……前面这些操作都属于常规操作,不管是图形还是静默都需要处理. 二./home/oracle/dat ...

  8. linux 之oracle静默安装

    一.安装前准备工作1.修改主机名#vi /etc/hosts   //并添加内网IP地址对应的hostname,如下127.0.0.1           localhost::1           ...

  9. CentOS 6.5下静默安装oracle

    本例: 通过SSH远程连接云主机,上传oracle11g安装包,在centos6.5上无图形化界面静默安装oracle11g. 涉及工具及环境: 1.本地环境windows7+ssh远程连接工具xSh ...

随机推荐

  1. 转:hive-列转行和行转列

    1. 假设我们在hive中有两张表,其中一张表是存用户基本信息,另一张表是存用户的地址信息等,表数据假设如下: user_basic_info: id name 1 a 2 b 3 c 4 d use ...

  2. openlayers跨域设置后出现http status 500错误

    最近需要弄一下地理信息系统,用到openlayers和geoserver.在解决跨域的时候出现如下问题.求解决方案啊. 问题如下: 附:已经安装了python27,环境变量path中也添加了:c:\P ...

  3. 是否应该开启WebView硬件加速?

    android webview 在3.0+后显示flash要启用硬件加速,开启硬件加速也能够使绘制更加平滑. 开启硬件加速是在manifest中加入: android:hardwareAccelera ...

  4. 系统变量 %USERPROFILE%

    可以用CMD的SET命令来查看现有的系统变量,“="前的部分用%括起来就是.   常用: %USERPROFILE% =C:\Users\用户名 %SystemRoot% =C:\WINDO ...

  5. Opencv2.4.13与Visual Studio2013环境搭建配置教程

    转载:http://www.jb51.net/article/108943.htm 一.安装包的下载与安装 Opencv可免费到官网上去下载,opencv是国外软件,在下载是由于受资源的限制,可能会出 ...

  6. 如何使用idea把web项目打成war包

    如果是maven项目,打成war包很容易,如果是web项目,需要这样子 1. 2. 3. output directory是war包的目录 4.重新选择 第一步的操作,选择build即可.

  7. Studying TCP's Congestion Window using NS

    Studying TCP's Congestion Window using NS How to obtain TCP's CWND value The most important value th ...

  8. 【NLP_Stanford课堂】文本分类1

    文本分类实例:分辨垃圾邮件.文章作者识别.作者性别识别.电影评论情感识别(积极或消极).文章主题识别及任何可分类的任务. 一.文本分类问题定义: 输入: 一个文本d 一个固定的类别集合C={c1,c2 ...

  9. 一段SQL代码

    begin transaction set quoted_identifier on set arithabort on set numeric_roundabort off set concat_n ...

  10. TcpListener、TcpClient

    1.TcpClient using System; using System.Text; using System.Net.Sockets; namespace tcpclient { class t ...