博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracel 10.2 NFS mount RMAN备份出错
阅读量:2494 次
发布时间:2019-05-11

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

Subject: Receiving error Ora-27054 When Running Rman With NFS
: 424785.1
[@more@]

Cause

Improper NFS mount options are used. This behaviour has been observed on Solaris Linux and AIX Platforms.

ORA-27054 ERRORS WHEN RUNNING RMAN WITH NFS

Solution

Workarounds:

*.event='10298 trace name context forever, level 32'

- Use the event 10298 (It can have a side effect of disabling direct IO on RAC using regular files on NFS mounts)

Reference : ORA-27054 ERRORS WHEN RUNNING RMAN WITH NFS

OR

Apply patch for

OR

- Set the mount options explictly.

Here are the mount options that need to be used for nfs volumes on Linux.

Use :
rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,vers=3,timeo=600,actimeo=0
default rsize and wsize for NFS is 4096 Blocks
so if you have rsize=32k and wsize=32k then NFS would be able to read and write large datagram as
compared to deafult one
TCP option will make sure that your client are getting the data or not
Hard & INTR - The program accessing a file on a NFS mounted file system will hang when the
server crashes. The process cannot be interrupted or killed unless you also specify intr. When
the NFS server is back online the program will continue undisturbed from where it was.
actimeo is for access timeout and it should be 0

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/668365/viewspace-1019811/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/668365/viewspace-1019811/

你可能感兴趣的文章
PHP批量插入
查看>>
laravel连接sql server 2008
查看>>
Laravel 操作redis的各种数据类型
查看>>
Laravel框架学习笔记之任务调度(定时任务)
查看>>
laravel 定时任务秒级执行
查看>>
浅析 Laravel 官方文档推荐的 Nginx 配置
查看>>
Swagger在Laravel项目中的使用
查看>>
Laravel 的生命周期
查看>>
CentOS Docker 安装
查看>>
Nginx
查看>>
Navicat远程连接云主机数据库
查看>>
Nginx配置文件nginx.conf中文详解(总结)
查看>>
Mysql出现Table 'performance_schema.session_status' doesn't exist
查看>>
MySQL innert join、left join、right join等理解
查看>>
vivado模块封装ip/edf
查看>>
sdc时序约束
查看>>
Xilinx Jtag Access/svf文件/BSCANE2
查看>>
NoC片上网络
查看>>
开源SoC整理
查看>>
【2020-3-21】Mac安装Homebrew慢,解决办法
查看>>