When i try to run simple bash DB backup command on my paid shared hosting via SSH i get this error
Tried adding skiplock then it errors same with access denied flush privileges etc, i had also tried without "--single-transaction" and "--force --lock-all-tables"mysqldump: Couldn't execute 'SHOW DATABASES': Access denied; you need (at least one of) the SHOW DATABASES privilege(s) for this operation (1227)
PHP:
mysqldump --user=${USER} --password=${PASS} --single-transaction --quick --force --lock-all-tables --all-databases | gzip --quiet > "${backup_dir}/${backup_date}.sql.gzip"