返回顶部
首页 > 资讯 > 数据库 >Oracle 学习之 11g Clone 安装
  • 538
分享到

Oracle 学习之 11g Clone 安装

2024-04-02 19:04:59 538人浏览 独家记忆
摘要

  如果你需要安装的数据库服务器比较多,使用图形化方式安装数据库软件的速度还是很慢,而且也比较麻烦。oracle 11g 提供了Clone安装的方法。步骤如下:使用正常方法在服务器A上安装好Ora

  如果你需要安装的数据库服务器比较多,使用图形化方式安装数据库软件的速度还是很慢,而且也比较麻烦。oracle 11g 提供了Clone安装的方法。

步骤如下:

  • 使用正常方法在服务器A上安装好Oracle。

  • 将A机器上的$ORACLE_HOME打包,db_home1.zip 。

  • 将B机器的环境准备好,如建立用户、建立用户、修改内核参数,修改环境变量等等。

  • 将zip包copy到B服务器,解压到任意目录。

  • 执行Clone命令


  1. A机器上打包

[root@localhost oracle]# zip -r db_1.zip /u01/app/oracle/product/11.2.0/db_1/

2. 准备B机器环境

[root@localhost inst_env_scripts]# ./1preusers.sh 
[root@localhost inst_env_scripts]# ./2predir.sh 
[root@localhost inst_env_scripts]# ./3prelimits.sh
[root@localhost inst_env_scripts]# ./4presysctl.sh

脚本内容如下

[root@localhost inst_env_scripts]# cat 1preusers.sh 
#!/bin/bash
#Purpose:Create 3 groups named 'oinstall','dba','oper', plus 1 users named 'oracle'.
#Also setting the Environment
#variable for oracle user.
#variable for grid user.
#Usage:Log on as the superuser('root'),and then execute the command:#./1preusers.sh
#Author:ding liqing
 
echo "Now create 3 groups named 'oinstall','dba','oper'"
echo "Plus 1 users named 'oracle',Also setting the Environment"
groupadd -g 1000 oinstall 
groupadd -g 1300 dba 
groupadd -g 1301 oper 
useradd -u 1101 -g oinstall -G dba,oper -d /home/oracle -s /bin/bash -c "Oracle Software Owner" oracle 
echo "oracle" | passwd --stdin oracle
echo "export TMP=/tmp">> /home/oracle/.bash_profile  
echo 'export TMPDIR=$TMP'>>/home/oracle/.bash_profile 
echo "export ORACLE_SID=orcl">> /home/oracle/.bash_profile 
echo "export ORACLE_BASE=/u01/app/oracle">> /home/oracle/.bash_profile
echo 'export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1'>> /home/oracle/.bash_profile
echo 'export TNS_ADMIN=$ORACLE_HOME/network/admin'  >> /home/oracle/.bash_profile
echo 'export PATH=/usr/sbin:$PATH'>> /home/oracle/.bash_profile
echo 'export PATH=$ORACLE_HOME/bin:$PATH'>> /home/oracle/.bash_profile
echo 'export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib'>> /home/oracle/.bash_profile
echo 'export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib'>> /home/oracle/.bash_profile
echo "export EDITOR=vi" >> /home/oracle/.bash_profile
echo "export LANG=en_US" >> /home/oracle/.bash_profile
echo "export NLS_LANG=american_america.AL32UTF8" >> /home/oracle/.bash_profile
echo "export NLS_DATE_FORMAT='yyyy/mm/dd hh34:mi:ss'" >> /home/oracle/.bash_profile
echo "umask 022">> /home/oracle/.bash_profile
 
echo "The Groups and users has been created"
echo "The Environment for oracle also has been set successfully"
[root@localhost inst_env_scripts]# cat 2predir.sh 
#!/bin/bash
#Purpose:Create the necessary directory for oracle users and change the authention to oracle users.
#Usage:Log on as the superuser('root'),and then execute the command:#./2predir.sh
#Author:ding liqing
 
echo "Now create the necessary directory for oracle users and change the authention to oracle users..."
mkdir -p /u01/app/oracle
chown -R oracle:oinstall /u01
chmod -R 775 /u01
echo "The necessary directory for oracle users and change the authention to oracle users has been finished"
[root@localhost inst_env_scripts]# cat 3prelimits.sh 
#!/bin/bash
#Purpose:Change the /etc/security/limits.conf.
#Usage:Log on as the superuser('root'),and then execute the command:#./3prelimits.sh
#Author:ding lq
 
echo "Now modify the /etc/security/limits.conf,but backup it named /etc/security/limits.conf.bak before"
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 "Modifing the /etc/security/limits.conf has been succeed."
#Usage:Log on as the superuser('root'),and then execute the command:#./4presysctl.sh
#Author:ding liqing
 
echo "Now modify the /etc/sysctl.conf,but with a backup named /etc/sysctl.bak"
cp /etc/sysctl.conf /etc/sysctl.conf.bak
 
echo "fs.aio-max-nr = 1048576" >> /etc/sysctl.conf
echo "fs.file-max = 6815744" >> /etc/sysctl.conf
echo "kernel.shmall = 2097152" >> /etc/sysctl.conf
echo "kernel.shmmax = 1054472192" >> /etc/sysctl.conf
echo "kernel.shmmni = 4096" >> /etc/sysctl.conf
echo "kernel.sem = 250 32000 100 128" >> /etc/sysctl.conf
echo "net.ipv4.ip_local_port_range = 9000 65500" >> /etc/sysctl.conf
echo "net.core.rmem_default = 262144" >> /etc/sysctl.conf
echo "net.core.rmem_max = 4194304" >> /etc/sysctl.conf
echo "net.core.wmem_default = 262144" >> /etc/sysctl.conf
echo "net.core.wmem_max = 1048586" >> /etc/sysctl.conf
echo "net.ipv4.tcp_wmem = 262144 262144 262144" >> /etc/sysctl.conf
echo "net.ipv4.tcp_rmem = 4194304 4194304 4194304" >> /etc/sysctl.conf
 
echo "Modifing the /etc/sysctl.conf has been succeed."
echo "Now make the changes take effect....."
sysctl -p

3. 将A机器上的zip包copy到B机器上

[root@localhost inst_env_scripts]# scp 192.168.199.163:/home/oracle/db_1.zip /home/oracle/
The authenticity of host '192.168.199.163 (192.168.199.163)' can't be established.
RSA key fingerprint is cc:d0:c3:de:37:33:a7:cb:91:40:c5:5f:18:07:06:9f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.199.163' (RSA) to the list of known hosts.
root@192.168.199.163's passWord: 
db_1.zip                                                                                                                                                                100% 2366MB  30.0MB/s   01:19


4. 解压zip文件

[root@localhost oracle]# unzip -d / db_1.zip 
[root@localhost oracle]# chown -R oracle.oinstall /u01/

5.执行Clone命令

[oracle@localhost ~]$ cd /u01/app/oracle/product/11.2.0/db_1/clone/bin/
[oracle@localhost bin]$ $ORACLE_HOME/perl/bin/perl clone.pl ORACLE_BASE="/u01/app/oracle/" ORACLE_HOME="/u01/app/oracle/product/11.2.0/db_1" OSDBA_GROUP=dba OSOPER_GROUP=oper -defaultHomeName

 执行结果如下

./runInstaller -clone -waitForCompletion  "ORACLE_BASE=/u01/app/oracle/" "ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1" "oracle_install_OSDBA=dba" "oracle_install_OSOPER=oper" -defaultHomeName  -defaultHomeName -silent -noConfig -nowait 
Starting Oracle Universal Installer...

Checking swap space: must be greater than 500 MB.   Actual 1999 MB    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2015-08-22_05-13-13AM. Please wait ...Oracle Universal Installer, Version 11.2.0.4.0 Production
Copyright (C) 1999, 2013, Oracle. All rights reserved.

You can find the log of this install session at:
 /u01/app/oraInventory/logs/cloneActions2015-08-22_05-13-13AM.log
.................................................................................................... 100% Done.



Installation in progress (Saturday, August 22, 2015 5:13:31 AM CST)
..............................................................................                                                  78% Done.
Install successful

Linking in progress (Saturday, August 22, 2015 5:13:38 AM CST)
Link successful

Setup in progress (Saturday, August 22, 2015 5:13:41 AM CST)
Setup successful

End of install phases.(Saturday, August 22, 2015 5:14:06 AM CST)
WARNING:A new inventory has been created in this session. However, it has not yet been reGIStered as the central inventory of this system.
To register the new inventory please run the script '/u01/app/oraInventory/orainstRoot.sh' with root privileges. 
If you do not register the inventory, you may not be able to update or patch the products you installed.
The following configuration scripts need to be executed as the "root" user.
/u01/app/oraInventory/orainstRoot.sh
/u01/app/oracle/product/11.2.0/db_1/root.sh
To execute the configuration scripts:
    1. Open a terminal window
    2. Log in as "root"
    3. Run the scripts
    
The cloning of OraHome1 was successful.
Please check '/u01/app/oraInventory/logs/cloneActions2015-08-22_05-13-13AM.log' for more details.

6. 使用root用户运行上面的两个脚本

[root@localhost ~]# /u01/app/oraInventory/orainstRoot.sh
[root@localhost ~]# /u01/app/oracle/product/11.2.0/db_1/root.sh

安装完毕!

您可能感兴趣的文档:

--结束END--

本文标题: Oracle 学习之 11g Clone 安装

本文链接: https://lsjlt.com/news/44692.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • Oracle 学习之 11g Clone 安装
      如果你需要安装的数据库服务器比较多,使用图形化方式安装数据库软件的速度还是很慢,而且也比较麻烦。Oracle 11g 提供了Clone安装的方法。步骤如下:使用正常方法在服务器A上安装好Ora...
    99+
    2024-04-02
  • Oracle 学习之卸载Oracle 11g
      Oracle 11g 安装完毕后,如果有卸载的需要。可以有如下方法:手工删除Oracle安装时建立的各目录、文件等。这种方法对于Linux还算可行,但是Window版中涉及到服务、注册表等等。...
    99+
    2024-04-02
  • Oracle 学习之RAC(四) 安装Oracle软件
    上传安装包到11grac1上解压安装包[root@11grac1 database]# unzip p10404530_112030_Linux-x86-64_1of7.zip...
    99+
    2024-04-02
  • oracle linux 5.8安装oracle 11g rac环境之oracle安装
     上续的系统配置,环境变量添加和grid安装在上一篇博客中,这篇主要是继上篇剩余的安装,上篇博客地址:http://tongcheng.blog.51cto.com/6214144/1852074...
    99+
    2024-04-02
  • Oracle 学习之RAC(三) Grid Infrastructure 安装
    将Grid Infrastructure安装包上传到服务器,并解压unzip p10404530_112030_Linux-x86-64_3of7.zip -d /databa...
    99+
    2024-04-02
  • oracle linux 5.8安装oracle 11g rac环境之grid安装
    安装环境:操作系统:oracle linux 5.8 64位集群软件:linux.x64_11gR2_grid.zip数据库:linux.x64_11gR2_database_1of1.zip,linux....
    99+
    2024-04-02
  • oracle 11g安装
    硬件准备:物理内存至少为1G,linux虚拟机的容量为60G。cat /etc/redhat-release 和uname -r  两个命令查看内核和版本,支持linux5/6   2....
    99+
    2024-04-02
  • Oracle - 11g安装
    小Q:最近因为工作的变动,接触了好多没接触的东西,一直在学习和熟悉业务,期间最有收获的就属于接触了除mysql之外的数据库,首先对oracle的安装记录一次。建议:第一次安装的朋友们,不要顺着我的来,将安装...
    99+
    2024-04-02
  • Oracle菜鸟学习之在RedHat 6.5上安装Oracle
    Oracle菜鸟学习之在RedHat 6.5上安装Oracle 11G 首发:http://www.arppinging.com/wordpress/p=90 安装前准备工作 上传数据库软件至/tmp/...
    99+
    2024-04-02
  • Oracle GoldenGate学习之--AIX系统安装配置
    Oracle GoldenGate学习之--AIX 系统安装配置系统环境操作系统:AIX5.3-09DB Soft:  Oracle 10gR2如下图所示: 系统环境实在AIX系统上构建...
    99+
    2024-04-02
  • centos6 安装oracle 11g
    一、安装oracle所需要的软件包(具体根据oracle官方文档)可以使用# yum -y install binutils* compat-lib*&nb...
    99+
    2024-04-02
  • rhel7.4安装oracle 11G
    一、操作系统red hat 7.4oracle数据库版本11.2.0.4对应的文件p13390677_112040_Linux-x86-64_1of7.zip - database softwarep133...
    99+
    2024-04-02
  • linux oracle 11g安装
    centos6.5 64位基本服务器安装oracle11g_r2 64位作者:刘美求日期:2017.06.051、安装依赖包# yum -y install  gcc gcc-c++ make b...
    99+
    2024-04-02
  • centos7 安装 oracle 11G
    1.查看系统版本号:      uname -a      Linux node2 3.10.0-123....
    99+
    2024-04-02
  • Centos6.5安装oracle 11G
    1.安装环境:linux服务器:centos6.5       oracle版本:11g R22.系统要求:系统要求说明内存必须高于1G的物理内存交换空间一般为内存的2倍,例如...
    99+
    2024-04-02
  • oracle 11g-R2安装
    f 附件:http://down.51cto.com/data/2367194...
    99+
    2024-04-02
  • AIX7.1安装oracle 11g
    环境配置:1).操作系统版本:# oslevel -s7100-01-06-1241给rootvg做镜像:# lsdev -Cc disk  --  #查看系统盘的分配情况hdisk0 ...
    99+
    2024-04-02
  • redhat5.5安装oracle 11g
    首先上传oracle安装文件至linux服务器1.解压zipunzip linux.x64_11gR2_database_1of2.zipunzip linux.x64_11gR2_database_2of...
    99+
    2024-04-02
  • Oracle安装(11g)静默安装
           本博文讲述如何在linux系统下静默安装oracle11g(11.2.4.0)。主要用于图形显示不方便的场景,也适用于脚本化批量部署的需要。系统环境OS...
    99+
    2024-04-02
  • 学习:Python之Python安装(一
    前言:Python是一种解释型、面向对象、动态数据类型的高级程序设计语音。作为目前流行的程序设计语言,由于语法简洁而清晰,并且具有丰富和强大的类库被大家所喜爱。Python简介:Python在Linux、Windows、MAC OS等操作系...
    99+
    2023-01-31
    Python
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作