You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A fork and further development of AutoMySQLBackup from sourceforge. http://sourceforge.net/projects/automysqlbackup/
4
+
5
+
You can find some original files from the sourceforge package. Some files are adjusted to my needs:
6
+
- support for MySQL 5.6 and MySQL 5.7
7
+
- support for login path (since MySQL 5.6.x a secure way to save your mysql credentials was implemented)
8
+
- adjusted the use of --ssl because it became depreated in MySQL 5.7. The parameter --ssl-mode=REQUIRED is used instead.
9
+
10
+
add login path
11
+
--------------
12
+
Per default this script uses the login path automysqldump.
13
+
14
+
```
15
+
mysql_config_editor set --login-path=automysqldump --host=localhost --user=root --password
16
+
```
17
+
After that command give your mysql root password and you're done. If you have another user to create the password with, feel free to edit the user parameter.
18
+
19
+
20
+
Have a try to make MySQL backups easily with this adjusted script. If you encounter any errors feel free to drop an issue. :)
0 commit comments