The suggested method to create MySQL database backups
phabricator/ $ ./bin/storage dump | gzip > backup.sql.gz
produces the following warning (stderr) on Ubuntu 16.04.1 (mysql-client-5.7)
mysqldump: [Warning] Using a password on the command line interface can be insecure.
While this warning does not matter when running the command manually, it is an issue when DB backups are scheduled via cron (which is the common use-case I assume). Suppressing stderr is not an option as other errors might go unnoticed.
How to reproduce:
- Install Phabricator on Ubuntu 16.04.1
- Execute above command