度量快速开发平台-专业、快速的软件定制快开平台

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
热搜: 部件 流程 SQL
查看: 4135|回复: 5
打印 上一主题 下一主题

[分享] 服务端备份错误的解决方法,利用fastcopy工具备份

[复制链接]

198

主题

1313

帖子

3806

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3806
跳转到指定楼层
楼主
发表于 2020-2-14 14:45:44 | 只看该作者 |只看大图 回帖奖励 |倒序浏览 |阅读模式
用户在使用系统后,为保证安全,需要随时对服务端文件备份,最近遇见一个问题,自动备份后都备份不完整,经过排查,发现在备份拷贝数据的时候,报告错误。

个别文件拷贝的时候提示系统资源不足。  这种拷贝直接用的windows 的 copy 命令。

然后我们使用其他的拷贝工具,又能成功的拷贝。

可以使用fastcopy进行拷贝备份服务端文件。只需要把批处理中的copy 替换成fastcopy文件就行。按照参数传递即可。


命令行示例:fastcopy.exe /cmd=sync /auto_close /acl "D:\web" /to="E:\web_bak"

1. Please use space character(' ') as separator(not semicolon).
If filename contains space character, please enclose with dobule quotation marks.
Ex) fastopy.exe C:\Windows "C:\Program Files" /to="D:\Backup Folder\"

2. If you want to wait to finish, please use start /wait command.
Ex) start /wait fastcopy.exe [/options]...

Supported options are as follows. (Please don't put space characters before and behind "=")

/cmd=(noexist_only|diff|update|sync|force_copy|move|delete) ... Specify operation mode.
(By default, diff mode is used. If delete mode is specified, then "/to=" option isn't used.)

/auto_close ... Close automatically after execution is finished with no errors.

/force_close ... Close automatically and forcedly after execution is finished.

/open_window ... Don't stored in the task tray.

/estimate ... Estimate complete time.

/no_exec ... Don't start to execute.

/no_confirm_del ... Don't confirm before deleting.

/no_confirm_stop ... Don't Show error dialog, Even if critical errors occurred.

/error_stop ... Show error dialog (and operation is interrupted), if an error occurred. (to disable, /error_stop=FALSE)

/bufsize=N(MB) ... Specify the size(MB) of the main buffer for Read/Write opration.

/log ... Write the operation/errors information to the logfile(fastcopy.log). (to disable, /log=FALSE)

/logfile=filename ... Specify the filename of logfile.

/filelog ... Write to the filelog(detail of copy/delete files). It is stored TIMESTAMP.log in FastCopy/Log directory. If using verify mode, write digest data(default:md5) as additional data. (To specify filelogname, /filelog=filename)

/utf8 ... Write to the logfile using UTF-8 encoding (supports Unicode).

/skip_empty_dir ... Skip to create empty directories when /include or /exclude option is used. (to disable, /log=FALSE)

/job=job_name ... Specify the job that is already registered.

/force_start ... Start at once without waiting for the finish of other FastCopy executing.

/disk_mode=(auto|same|diff) ... Specify Auto/Same/Diff HDD mode. (default: Auto)

/speed=(full|autoslow|9-1(90%-10%)|suspend) ... Specify speed control level.

/srcfile="files.txt" ... Specify source files by textfile. User is able to describe 1 filename per line. (Attention: If a lot of files are specified, it will take many times to display/refresh Source combobox.)

/srcfile_w="files.txt" ... same as "/srcfile=", except describing by UNICODE.

/include="..." ... Specify include filter. (details)

/exclude="..." ... Specify exclude filter. (details)

/from_date="..." ... Specify oldest timestamp filter. (details)

/to_date="..." ... Specify newest timestamp filter. (details)

/min_size="..." ... Specify minimum size filter. (details)

/max_size="..." ... Specify maximum size filter. (details)

/wipe_del ... Rename filename and wipe(overwrite Random data) before deleting.

/acl ... Copy ACL (only NTFS) (to disable, /acl=FALSE)

/stream ... Copy Alternate Stream (only NTFS) (to disable, /stream=FALSE)

/reparse ... Copy junction/mountpoint/symlink itself(to disable, /reparse=FALSE) (details)

/verify ... Verify written files data by MD5(or SHA-1) (to disable, /verify=FALSE) (details)


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

198

主题

1313

帖子

3806

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3806
沙发
 楼主| 发表于 2020-2-14 17:46:03 | 只看该作者
这个fastcopy工具,拷贝大数据还比较有优势,可以利用这个工具来备份我们的服务和业务数据。
回复 支持 反对

使用道具 举报

198

主题

1313

帖子

3806

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3806
板凳
 楼主| 发表于 2020-2-18 16:16:30 | 只看该作者
这个工具还好用,都没人来学习下吗?
回复 支持 反对

使用道具 举报

198

主题

1313

帖子

3806

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
3806
地板
 楼主| 发表于 2020-2-18 16:16:59 | 只看该作者
顶上来多多了解。
回复 支持 反对

使用道具 举报

348

主题

3572

帖子

9723

积分

论坛元老

Rank: 8Rank: 8

积分
9723
5#
发表于 2020-5-23 00:31:05 | 只看该作者
这么多,眼睛都看花了,要是附上备份脚本下载就完美了
若現在就覺得失望無力,未來那麽遠妳該怎麽扛...
————————————————————————致自己
回复 支持 反对

使用道具 举报

348

主题

3572

帖子

9723

积分

论坛元老

Rank: 8Rank: 8

积分
9723
6#
发表于 2020-6-29 07:23:49 | 只看该作者
大文件备份不错
若現在就覺得失望無力,未來那麽遠妳該怎麽扛...
————————————————————————致自己
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|重庆度量科技  本站关键词:快速开发平台

GMT+8, 2024-4-26 12:39 , Processed in 0.137266 second(s), 27 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表