0

我正在尝试使用 PHP/Samba 将我的数据库备份到另一个硬盘驱动器。但它不起作用,我被卡住了。

$dbBackup = 'backup_location.gz.des3';
if (!file_exists($dbBackup)) {
    throw new Exception("Today's backup does not exist!" . $dbBackup);
}
$dbBackup = realpath($dbBackup);

// create path to save on local drive
$savePath = 'folder\subfolder\\' . date('Y') . '\db\bu\\' . date('n') . '\\';
$savePath .= basename($dbBackup);

// build up SMBClient command
$command = 'smbclient';
$command .= ' -N'; // no-pass
$command .= ' -U ' . escapeshellarg($username) . '%' . escapeshellarg($password); // username/password
$command .= ' -O "TCP_NODELAY IPTOS_LOWDELAY SO_KEEPALIVE SO_RCVBUF=8192 SO_SNDBUF=8192"'; // some options
$command .= ' -d 0'; // debug level
$command .= ' ' . escapeshellarg($share); // share name, it is \\x.x.com\x\x\x\x\".
$command .= ' -c ' . escapeshellarg('put ' . $dbBackup . ' ' . $savePath); // command to execute

// execute command on shell
$output = shell_exec($command);

// try to detect error's
if (stripos($output, 'NT_STATUS_') !== false) {
    throw new Exception($output);
}

使用此代码我检索此错误: NT_STATUS_OBJECT_PATH_NOT_FOUND

该错误给出了一个无法找到的路径。我可以访问路径,但文件显然不存在。

我非常确定所有路径都是正确的,用户凭据也是如此。

难道我做错了什么?错字还是什么?我已经坚持了几个星期了。

提前感谢您的帮助!

4

1 回答 1

0

问题是我放置文件的驱动器位于不同的工作组中。

我添加-W MYCORRECTWORKGROUP到命令中,它又可以工作了!

于 2013-04-05T13:08:06.877 回答