Microsoft Windows Services for Unix and Rman
688998Jun 12 2009 — edited Jul 18 2012Hi,
I've an Oracle 10g database running on a Windows 2003 R2 server. On this server we have installed Microsoft Windows Services for Unix (MWSfU) which has a NFS client. With MWSfU we mount a filesystem on a Netapp. I can copy,change and delete files on the nfs share and in sqlplus I can spool files to the share. But when I try to make an rman backup on the share I get the following error:
rman target /
RMAN> backup as compressed backupset database format 'k:\aaa.bak';
Starting backup at 12-JUN-09
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=145 devtype=DISK
channel ORA_DISK_1: starting compressed full datafile backupset
channel ORA_DISK_1: specifying datafile(s) in backupset
input datafile fno=00001 name=C:\SMTOR001\SMTOR001\SYSTEM01.DBF
.... <stuff deleted>
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 06/12/2009 15:35
38
ORA-19504: failed to create file "K:\AAA.BAK"
ORA-27040: file create error, unable to create file
OSD-04002: unable to open file
O/S-Error: (OS 3) The system cannot find the path specified.
I've also tried to use the UNC path:
RMAN> backup as compressed backupset database format '\\10.253.177.232\VOL\CMSP7
1JAWE\TSt\aaa.bak';
Starting backup at 12-JUN-09
using channel ORA_DISK_1
channel ORA_DISK_1: starting compressed full datafile backupset
channel ORA_DISK_1: specifying datafile(s) in backupset
input datafile fno=00001 name=C:\SMTOR001\SMTOR001\SYSTEM01.DBF
....
....
channel ORA_DISK_1: starting piece 1 at 12-JUN-09
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: failure of backup command on ORA_DISK_1 channel at 06/12/2009 15:36:
08
ORA-19504: failed to create file "\\10.0.0.12\VOL\WORK\TST\AAA.BAK"
ORA-27040: file create error, unable to create file
OSD-04002: unable to open file
O/S-Error: (OS 1326) Logon failure: unknown user name or bad password.
The Oracle service is running on "LOCAL SYSTEM". Running the service under a domain account doesn't solve the problem.
I've read DocID 144485.1 but that workaround only work when using a Windows - Windows share.
Any suggestions?
Ivan