Hello,
After upgrading from mariadb 10 to 11.5, my backups are not working anymore because of mysql backups.
The logs read:
Using method "mysql". The "mysql" method is chosen, but is not found.
After some digging in source code, the problem is with those lines of code:
mysql=$(which mysql 2> /dev/null) || true
and
mysqldump=$(which mysqldump) || true
New versions of mariadb have renamed those commands.
Is backup-manager still maintened?
In the meantime, a temp fix for those who have the same issue is to create symlinks:
ln -s /usr/bin/mariadb /usr/bin/mysql
ln -s /usr/bin/mariadb-dump /usr/bin/mysqldump
Hello,
After upgrading from mariadb 10 to 11.5, my backups are not working anymore because of mysql backups.
The logs read:
Using method "mysql". The "mysql" method is chosen, but is not found.After some digging in source code, the problem is with those lines of code:
mysql=$(which mysql 2> /dev/null) || trueand
mysqldump=$(which mysqldump) || trueNew versions of mariadb have renamed those commands.
Is backup-manager still maintened?
In the meantime, a temp fix for those who have the same issue is to create symlinks: