报错:
mysqldump: [Warning] Using a password on the command line interface can be insecure.
mysqldump: Got error: 2026: SSL connection error: error:00000001:lib(0)::reason(1) when trying to connect
解决方案:加上参数 --skip-ssl
E:\tools\mysql-5.7.38-winx64\bin\mysqldump --skip-ssl -h%host% -P%port% -u%user% -p%pass% -R -B -c --add-drop-table
网友评论