Welcome 微信登录

首页 / 数据库 / MySQL / EXPDP 时ORA-27054 问题解决方法

现象:[Oracle@oracle1 ~]$ expdp xian/xian schemas=xian directory=dumpdir dumpfile=xian.dmp LOGFILE=xian.logExport: Release 10.2.0.5.0 - 64bit Production on Friday, 02 December, 2016 20:19:48Copyright (c) 2003, 2007, Oracle.  All rights reserved.Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit ProductionWith the Partitioning, Real Application Clusters, OLAP, Data Miningand Real Application Testing optionsORA-39001: invalid argument valueORA-39000: bad dump file specificationORA-31641: unable to create dump file "/backup/xian.dmp"ORA-27054: NFS file system where the file is created or resides is not mounted with correct optionsAdditional information: 3Additional 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更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12本文永久更新链接地址