Is it possible to dump all databases without supplying the username and password for each databe ? The server has 10 databases with different usernames and passwords.
I will be logged in as root (centOS)
I used the following but i get access errors
mysqldump --all-databases > gzip > bak-sql.zip
[fixed]
mysqldump -u admin --password='password' --all-databases | gzip -7 > bak-sql.zip
[Related Thread]
https://stackoverflow.com/questions/8444108/how-to-use-mysql-dump