MD5生成与校验(Linux/UNIX/Windows)
数据库迁移过程中(expdp导出数据库),有大量巨大的文件需要传递,ftp速度大于sftp,但没有文件校验。
如果生成MD5列表,文件落地后先进行MD5校验,只重新传递错误的文件,会极大提高效率。
一、 Windows 生成MD5
D:\share>certutil -hashfile test.txt MD5
MD5 的 test.txt 哈希:
e03755aec0e7e933fc6abf4a0ff358c9
CertUtil: -hashfile 命令成功完成。
二、linux/unix openssl 生成MD5
[root@dc001on1 share]
Linux dc001on1 3.10.0-1127.el7.x86_64
[root@dc001on1 share]
OpenSSL> md5 test.txt
MD5(test.txt)= e03755aec0e7e933fc6abf4a0ff358c9
OpenSSL> exit
三、通用openssl 交互式批量生成与校验MD5
[root@dc001on1 share]
MD5(oracle.txt)= 5518f9a7604d754c8c9d1abfc23ae75e
MD5(test.txt)= e03755aec0e7e933fc6abf4a0ff358c9
[root@dc001on1 share]
四、Linux md5sum 生成与校验MD5的专用方法:
[root@dc001on1 share]
[root@dc001on1 share]
d15bc07a22b97c86ef5b80ad83f84c83 md5hash.txt
1116881cfb5d53783cf834f1afa9127a mysql_root_login.txt
d57c0b5e04d7cb5665b674930fa8b6d3 Oracle12.2_OEL7_x64_Install_NMMCC.txt
5518f9a7604d754c8c9d1abfc23ae75e oracle.txt
e03755aec0e7e933fc6abf4a0ff358c9 test.txt
[root@dc001on1 share]
md5hash.txt: OK
mysql_root_login.txt: OK
Oracle12.2_OEL7_x64_Install_NMMCC.txt: OK
oracle.txt: OK
test.txt: OK
[root@dc001on1 share]