- 最后登录
- 2014-3-28
- 在线时间
- 118 小时
- 威望
- 5
- 金钱
- 394
- 注册时间
- 2011-10-12
- 阅读权限
- 100
- 帖子
- 110
- 精华
- 0
- 积分
- 5
- UID
- 10
|
5#
发表于 2011-11-14 10:05:04
试下
ORA-27054: NFS file system where the file is created or resides is not mounted with correct options [ID 781349.1]
修改时间 05-OCT-2011 类型 PROBLEM 状态 PUBLISHED
In this Document
Symptoms
Cause
Solution
References
Applies to:
Oracle Server - Enterprise Edition - Version: 10.1.0.2 to 11.1.0.7 - Release: 10.1 to 11.1
Information in this document applies to any platform.
***Checked for relevance on 21-Jan-2011***
Symptoms
You are transferring your database/installation to a NetApps NFS mount point.
The following error occurs on database startup:
ORA-01503: CREATE CONTROLFILE failed
ORA-01565: error in identifying file '/nfs_d04/oasisxx/data/oasis_system.dbf'
ORA-27054: NFS file system where the file is created or resides is not mounted with correct options
The current mount point is mounted as:
rw,bg,rsize=32768,wsize=32768,hard,vers=3,nointr,timeo=600,proto=tcp,suid 0 0
Cause
The correct mount point options are being used but they are not in the correct order per oracle docs on correctly mounting NFS mounts for oracle software.
The correct setting should be:
rw,bg,hard,rsize=32768,wsize=32768,vers=3,nointr,timeo=600,proto=tcp,suid
NOTE: the location of the parameter 'hard'
NOTE: As per Bug 11812928, the 'intr' & 'nointr' are deprecated in UEK kernels, as well as Oracle Linux 6. It is harmless to still include it, you will get a notice..
NFS: ignoring mount option: nointr.
Solution
Mount the NFS mount point with the recommended options in the exact order specified in oracle documentation.
For example:
# mount -F nfs -o rw,bg,hard,rsize=32768,wsize=32768,vers=3,forcedirectio,nointr,proto=tcp,suid host:/folder1/to1 /folder2/to2
Additional Resources
Community Discussions: Storage Management
Still have questions? Use the above community to search for similar discussions or start a new discussion on this subject.
References
NOTE:359515.1 - Mount Options for Oracle files when used with NAS devices |
|