GabrielBrascher opened a new pull request #255: URL: https://github.com/apache/cloudstack-documentation/pull/255
Fix mysqldump command in the ["Database Preparation"](https://docs.cloudstack.apache.org/en/4.16.0.0/upgrading/upgrade/upgrade-4.15.html#database-preparation) section. Nowadays it is: ``` $ mysqldump -u root -p -R cloud > cloud-backup_`date '+%Y-%m-%d'.sql $ mysqldump -u root -p cloud_usage > cloud_usage-backup_`date '+%Y-%m-%d'.sql ``` This won't work as it is missing a grave accent (`) in ``date '+%Y-%m-%d'.`. Should be: ``` $ mysqldump -u root -p -R cloud > cloud-backup_`date '+%Y-%m-%d'`.sql $ mysqldump -u root -p cloud_usage > cloud_usage-backup_`date '+%Y-%m-%d'`.sql ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org