現象:oracle
[oracle@oracle1 ~]$ expdp xian/xian schemas=xian directory=dumpdir dumpfile=xian.dmp LOGFILE=xian.logtcp
Export: Release 10.2.0.5.0 - 64bit Production on Friday, 02 December, 2016 20:19:48ide
Copyright (c) 2003, 2007, Oracle. All rights reserved.orm
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Productionci
With the Partitioning, Real Application Clusters, OLAP, Data Miningit
and Real Application Testing optionsio
ORA-39001: invalid argument valueform
ORA-39000: bad dump file specificationclass
ORA-31641: unable to create dump file "/backup/xian.dmp"file
ORA-27054: NFS file system where the file is created or resides is not mounted with correct options
Additional information: 3
Additional information: 18
緣由:
文件夾MOUNT NFS時未加相關參數
須要追加參數:rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,vers=3,timeo=600,actimeo=0
解決:改爲以下
mount -t nfs -o rw,bg,hard,nointr,rsize=32768,wsize=32768,tcp,vers=3,timeo=600,actimeo=0 10.71.13.109:/oracle/backup/ /backup