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
Removes the root user/pass from the configuration file and uses a
mysqloptions file https://dev.mysql.com/doc/refman/8.0/en/option-files.html
This prevents warnings from mysql about using a pssword on the command
line
Sample File make sure its not publicly readable, like your SSH keys.
```
[client]
user=root
password=your_password
```
Closes#14
The backup process throws the following warnings
mysqldump: [Warning] Using a password on the command line interface can be insecure.
because the user/pass is passed on the commandline. A more secure method is to use the MySQL options file with
--defaults-file
The text was updated successfully, but these errors were encountered: