脱机异地还原(安装一个原环境相同的linux,并安装数据库,注意不要配置安装实例)
 1、检查/home/oracle下的.bashrc   .bash_profile内容是否与原环境一致(具体看情况而定),示例如下:
# User specific aliases and functions
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1
export PATH=$ORACLE_HOME/bin:$PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
export ORACLE_SID=orcl
export ORACLE_OWNER=oracle
export ORACLE_TERM=vt100
export THREADS_FLAG=native
export LANG=en_US
2、要记录原数据库的BDID(此次测试的DBID=1495584919)
 3、oracle用户下:
[oracle@g ~]$ rman target / nocatalog
RMAN>
RMAN>startup nomount;
startup failed: ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file '/u01/app/oracle/product/11.2.0/db_1/dbs/initorcl.ora'
starting Oracle instance without parameter file for retrieval of spfile
Oracle instance started
Total System Global Area 1068937216 bytes
Fixed Size 2260088 bytes
Variable Size 285213576 bytes
Database Buffers 775946240 bytes
Redo Buffers 5517312 bytes
RMAN>set dbid=1495584919;
RMAN>restore spfile to '/u01/app/oracle/product/11.2.0/db_1/dbs/spfileorcl.ora' from '/oback/CONTROLFILE.ORCL.c-1495584919-20180217-06';
Starting restore at 17-FEB-18
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=396 device type=DISK channel ORA_DISK_1: restoring spfile from AUTOBACKUP /oback/CONTROLFILE.ORCL.c-1495584919-20180217-06
channel ORA_DISK_1: SPFILE restore from AUTOBACKUP complete
Finished restore at 17-FEB-18 RMAN> startup force nomount;
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
RMAN> startup force nomount;
报错:
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of startup command at 02/17/2018 17:01:47
RMAN-04014: startup failed: ORA-01261: Parameter db_recovery_file_dest destination string cannot be translated
ORA-01262: Stat failed on a file destination directory
Linux-x86_64 Error: 2: No such file or directory
cat /u01/app/oracle/product/11.2.0/db_1/dbs/spfileorcl.ora 查看 db_recovery_file_dest的参数,手工建立了fast_recovery_area目录,并修改权限为oracle.oinstall RMAN> startup force nomount;
报错:
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of startup command at 02/17/2018 17:05:14
RMAN-04014: startup failed: ORA-16032: parameter LOG_ARCHIVE_DEST_1 destination string cannot be translated
ORA-07286: sksagdi: cannot obtain device information.
Linux-x86_64 Error: 2: No such file or directory
cat /u01/app/oracle/product/11.2.0/db_1/dbs/spfileorcl.ora 查看 LOG_ARCHIVE_DEST_1的参数,手工建立了/backup/archive/ORCL目录并修改权限为oracle.oinstall RMAN> startup force nomount;
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of startup command at 02/17/2018 17:10:23
RMAN-04014: startup failed: ORA-09925: Unable to create audit trail file
Linux-x86_64 Error: 2: No such file or directory
Additional information: 9925
手工建立了audit_file_dest='/u01/app/oracle/admin/orcl/adump'目录并修改权限为oracle.oinstall
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
再次执行:成功了
RMAN> startup force nomount;
Oracle instance started
Total System Global Area 5010685952 bytes
Fixed Size 2261848 bytes
Variable Size 1006636200 bytes
Database Buffers 3992977408 bytes
Redo Buffers 8810496 bytes RMAN>restore controlfile from '/oback/CONTROLFILE.ORCL.c-1495584919-20180217-06';
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
报错:
Starting restore at 17-FEB-18
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=156 device type=DISK channel ORA_DISK_1: restoring control file
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 02/17/2018 17:18:33
ORA-19870: error while restoring backup piece /oback/CONTROLFILE.ORCL.c-1495584919-20180217-06
ORA-19504: failed to create file "/u01/app/oracle/oradata/orcl/control01.ctl"
ORA-27040: file create error, unable to create file
Linux-x86_64 Error: 2: No such file or directory
Additional information: 1
手工建立了"/u01/app/oracle/oradata/orcl/"目录并修改权限为oracle.oinstall 再次执行命令
报错:
channel ORA_DISK_1: restoring control file
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of restore command at 02/17/2018 17:21:22
ORA-19504: failed to create file "/u01/app/oracle/fast_recovery_area/orcl/control02.ctl"
ORA-27040: file create error, unable to create file
Linux-x86_64 Error: 2: No such file or directory
Additional information: 1
ORA-19600: input file is control file (/u01/app/oracle/oradata/orcl/control01.ctl)
ORA-19601: output file is control file (/u01/app/oracle/fast_recovery_area/orcl/control02.ctl)
手工建立了"/u01/app/oracle/fast_recovery_area/orcl/"目录并修改权限为oracle.oinstall
再次执行命令(成功)
Starting restore at 17-FEB-18
using channel ORA_DISK_1
channel ORA_DISK_1: restoring control file
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
output file name=/u01/app/oracle/oradata/orcl/control01.ctl
output file name=/u01/app/oracle/fast_recovery_area/orcl/control02.ctl
Finished restore at 17-FEB-18
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
4、启动数据库到加载状态
RMAN>alter database mount;
database mounted
released channel: ORA_DISK_1 在新控制文件中注册数据文件备份和归档备份
RMAN>catalog start with '/oback/';
searching for all files that match the pattern /oback/
List of Files Unknown to the Database
=====================================
File Name: /oback/backup_2bsrfda0_1_1
File Name: /oback/backup_2csrfdag_1_1
File Name: /oback/CONTROLFILE.ORCL.c-1495584919-20180217-06
File Name: /oback/backup_2dsrfdah_1_1
File Name: /oback/backup_2esrfdai_1_1
File Name: /oback/backup_29srfd9o_1_1
File Name: /oback/backup_2asrfd9p_1_1 Do you really want to catalog the above files (enter YES or NO)? yes
cataloging files...
cataloging done List of Cataloged Files
=======================
File Name: /oback/backup_2bsrfda0_1_1
File Name: /oback/backup_2csrfdag_1_1
File Name: /oback/CONTROLFILE.ORCL.c-1495584919-20180217-06
File Name: /oback/backup_2dsrfdah_1_1
File Name: /oback/backup_2esrfdai_1_1
File Name: /oback/backup_29srfd9o_1_1
File Name: /oback/backup_2asrfd9p_1_1
5、还原数据库
RMAN> restore database;
Starting restore at 17-FEB-18
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/orcl/system01.dbf
channel ORA_DISK_1: reading from backup piece /oback/backup_2asrfd9p_1_1
channel ORA_DISK_1: piece handle=/oback/backup_2asrfd9p_1_1 tag=TAG20180217T153313
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/orcl/sysaux01.dbf
channel ORA_DISK_1: reading from backup piece /oback/backup_2bsrfda0_1_1
channel ORA_DISK_1: piece handle=/oback/backup_2bsrfda0_1_1 tag=TAG20180217T153313
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:07
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/orcl/undotbs01.dbf
channel ORA_DISK_1: reading from backup piece /oback/backup_2csrfdag_1_1
channel ORA_DISK_1: piece handle=/oback/backup_2csrfdag_1_1 tag=TAG20180217T153313
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00004 to /u01/app/oracle/oradata/orcl/users01.dbf
channel ORA_DISK_1: reading from backup piece /oback/backup_2dsrfdah_1_1
channel ORA_DISK_1: piece handle=/oback/backup_2dsrfdah_1_1 tag=TAG20180217T153313
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
Finished restore at 17-FEB-18
6、恢复数据
RMAN> recover database;
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
报错:
starting media recovery channel ORA_DISK_1: starting archived log restore to default destination
channel ORA_DISK_1: restoring archived log
archived log thread=1 sequence=55
channel ORA_DISK_1: reading from backup piece /oback/backup_2esrfdai_1_1
channel ORA_DISK_1: piece handle=/oback/backup_2esrfdai_1_1 tag=TAG20180217T153338
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
archived log file name=/u01/app/oracle/product/11.2.0/db_1/dbs/USE_DB_RECOVER_FILE_DEST1_55_967804185.dbf thread=1 sequence=55
unable to find archived log
archived log thread=1 sequence=56
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of recover command at 02/17/2018 17:35:32
RMAN-06054: media recovery requesting unknown archived log for thread 1 with sequence 56 and starting SCN of 1681835
可见,出先此错误的原因是恢复需要的日志记录在控制文件或恢复目录中找不到。解决方法分两种情况:
1.如果相关的日志存在且可用的话,就将此日志记录添加到控制文件或恢复目录中。
2.如果相关的日志已经被删除了或不可用了,那么就按照错误的提示scn将数据库恢复到此scn,本案例是1681835。
也就是说此时数据库只能进行不完全恢复了,在打开数据库时得使用resetlogs打开。
执行:
RMAN> recover database until scn 1681835;
××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××××
重置重做日志,即将重做日志的sequence置零
RMAN> alter database open resetlogs;
7、增加监听
复制原来的文件过来 提示用户密码错误无法登陆,查看密码文件,提示缺少
SQL> show parameter remote_login;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
remote_login_passwordfile string EXCLUSIVE
SQL> ho ls $ORACLE_HOME/dbs/orapw*;
ls: cannot access /u01/app/oracle/product/11.2.0/db_1/dbs/orapw*: No such file or directory 使用orapwd重建当前数据库密码文件
SQL> ho orapwd file=$ORACLE_HOME/dbs/orapworcl password=oracle entries=10
重置sys密码:
SQL> password sys;
Changing password for sys
Old password:
New password:
Retype new password:
Password changed
用户解锁:改密码等
create user test identified by "111111";
grant connect,resource,sysdba to test
alter user SCOTT account unlock identified by 111111;

-----end-------

Oracle单机Rman笔记[5]---脱机异地还原的更多相关文章

  1. Oracle单机Rman笔记[6]---记一次oracle脱机异地还原

    系统情况介绍 正式环境:windows 2008 r2-32bit/ Oracle: Release 11.2.0.1.0 目标环境:windows 2012 Standard-64bit / Ora ...

  2. Oracle单机Rman笔记[3]---RMAN脱机备份及命令基础介绍

    A.NOARCHIVELOG模式下的物理备份 1.完全关闭数据库 2.备份所有的数据库文件.控制文件.联机重做日志 3.重新启动数据库 B.RMAN的体系结构概述 重新构建控制文件: 将控制文件备份为 ...

  3. Oracle单机Rman笔记[4]---RMAN联机备份

    备注:RMAN备份(仅支持基于spfile的备份,不支持基于init.ora配置的备份) 练习:开启ARCHIVELOG模式 \为归档的重做日志被指FRA和单独的归档日志目标 SQL>show ...

  4. Oracle单机Rman笔记[2]---RMAN基础介绍

    A.DBA对于备份恢复的问题: 1.在数据库发生故障时,丢失多少数据是可承受的? 2.恢复数据库时,能够忍受的最长时间多少? 3.为了确保您的数据能够被恢复,愿意投入多少成本? 4.备份期间可以关闭系 ...

  5. Oracle单机Rman笔记[0]---环境准备

    A. 安装操作系统rhel6.6,关闭防火墙,修改网卡配置IP(略)PS:1.默认分区选项(第二项,默认为LVM),然后进行调整2.安装类型选择“桌面”3.安装后 分配IP.调整防火墙.测试SSH B ...

  6. Oracle单机Rman笔记[1]---环境准备

    A.-----安装程序准备---- 1.拷贝oracle安装包到一个目录下 2.检查并修改hostname /etc/sysconfig/network中的hostname要与/etc/hosts中的 ...

  7. oracle数据库rman异地恢复

    自己想做两组rac之间的data guard,由于datafile,controlfile,甚至是archivelog都是存放在asm上的,直接复制数据有点不现实,asm磁盘总归都是要用的,所以想从a ...

  8. ORACLE的RMAN

    1.什么是RMAN? RMAN可以用来备份和还原数据库文件.归档日志和控制文件.它也可以用来执行完全或不完全的数据库恢复. 注意:RMAN不能用于备份初始化参数文件和口令文件. RMAN启动数据库上的 ...

  9. oracle之三RMAN概述

    RMAN概述 6.1 rman的定义和功能: 1) Recovery Manager 2)建立备份和恢复的server process,在oracle server上做备份和恢复 3)rman 备份d ...

随机推荐

  1. 【.NET】 C# 时间戳和DataTime 互相转换

    1.C# DateTime转换为Unix时间戳 System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(, , )); // ...

  2. ASP.NET 教程汇总

    channel9 https://channel9.msdn.com/ .net core项目实战 https://study.163.com/course/introduction.htm?cour ...

  3. SlidingMenu第一篇 --- 导入SlidingMenu库

    1. 下载地址:https://github.com/jfeinstein10/SlidingMenu 2.  找到下载好的SlidingMeun的library目录 3.  导入库(将上述地址复制到 ...

  4. js字母/字符与ASCII码转换

    var tempStr="A"; console.log(tempStr.charCodeAt());// 65 ,转ASCII码 console.log(String.fromC ...

  5. Exp3 免杀原理与实践 20164303 景圣

    Exp3 免杀原理与实践 一.实验内容 1. 正确使用msf编码器,msfvenom生成如jar之类的其他文件,veil-evasion,自己利用shellcode编程等免杀工具或技巧 2. 通过组合 ...

  6. Java多线程的创建与简单使用

    一.线程的基本概念 什么是线程:Thread 进程内部的一个执行单元,它是程序中一个单一的顺序控制流程. 线程又被称为轻量级进程(lightweight process) 如果在一个进程中同时运行了多 ...

  7. Git访问远程出现错误

    错误示例 remote: HTTP Basic: Access denied fatal: Authentication failed for "xxx" 错误原因 由于修改了公司 ...

  8. 比原链(Bytom)先知节点 Windows接入文档

    系统要求 我们建议选择知名的VPS服务商,运行比原链节点对算力没有要求,但是请配置尽可能大的磁盘空间. 节点服务器最小配置: 操作系统: Windows/Linux/Docker CPU: 2核 内存 ...

  9. ng/cli uses yarn as the package manager

    Switch to working directory Excuting the following command ng config cli.packageManager yarn

  10. 微信小程序云开发更换云开发环境

    小程序云开发环境初始化默认是第一个环境,但是我们可以指定环境id //app.js App({ onLaunch: function () { if (!wx.cloud) { console.err ...