How to install specific xtrabackup 2.4.24 version on ubuntu?

Hello,

How to install specific version of xtrabackup (version 2.4.24) on ubuntu?

i have tried with below process but it install 2.4.26 , but i need to install 2.4.24

$ wget https://repo.percona.com/apt/percona-release_latest.$(lsb_release -sc)_all.deb
$ sudo dpkg -i percona-release_latest.$(lsb_release -sc)_all.deb
$ sudo apt install percona-xtrabackup-24

Thanks,

Hello Pavanmysql,

You can install an specific version by downloading the deb package. For example for version 2.4.24 you can use the following package

wget https://www.percona.com/downloads/XtraBackup/Percona-XtraBackup-2.4.24/binary/debian/stretch/x86_64/percona-xtrabackup-24_2.4.24-1.stretch_amd64.deb

Then you can install it as follows

sudo dpkg -i percona-xtrabackup-24_2.4.20-1.stretch_amd64.deb

Reference: https://docs.percona.com/percona-xtrabackup/2.4/installation/apt_repo.html

I hope that helps.

1 Like