1. 程式人生 > >AIX export 報 ORA-27054: mount盤

AIX export 報 ORA-27054: mount盤

ID 1518979.1

ID 781349.1

 

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

NOTE:  if settings revert back to original settings after remount, check auto-mounter options/settings.  For more info on auto-mounter, please contact the OS vendor.
 

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.

 

 

 

報錯資訊:

With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Data Mining and Real Application Testing options
ORA-39001: invalid argument value
ORA-39000: bad dump file specification
ORA-31641: unable to create dump file "/devotd_dpump/expdp_metadata_vspp_sun.dmp"
ORA-27054: NFS file system where the file is created or resides is not mounted with correct options
Additional information: 3
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3

 

Cause

The NFS mount options seem to be incorrect. No specific setting was found to address this. The below options were tried but the same error was still encountered:

  1. Mount options as per Note 781349.1 - ORA-27054: NFS file system where the file is created or resides is not mounted with correct options
  2. Backup using RMAN into this problematic mount point was successful
  3. Traditional export using exp to this problematic mount point was successful
  4. Creation of a new datafile to this mount point was successful
  5. Creation of a file from OS side to this problematic mount point was successful
  6. Reboot of the NFS mount point made no difference

Solution

The only solution which worked in this case was to set the below event which disables the mount point parameter checking:

sqlplus / as sysdba
alter system set events '10298 trace name context forever, level 32';

Or:

Set the following event in the init.ora

event="10298 trace name context forever, level 32"

 

Note:
--------
To unset the event from memory:
SQL> alter system set events '10298 trace name context off';
or if a pfile is used, remove the event from init.ora and restart the instance.