Software is not installed

I try to install the software on my VPS.
This is the server that I have:

PRETTY_NAME=“Debian GNU/Linux 7 (wheezy)”
NAME=“Debian GNU/Linux”
VERSION_ID=“7”
VERSION=“7 (wheezy)”
ID=debian

I added this line:

deb [URL]http://repo.percona.com/apt[/URL] wheezy main
deb-src [URL]http://repo.percona.com/apt[/URL] wheezy main

And I run this command: apt-get update
The result:
Hit http://security.debian.org wheezy/updates Release.gpg
Hit http://security.debian.org wheezy/updates Release
Hit http://security.debian.org wheezy/updates/main Sources
Hit http://security.debian.org wheezy/updates/main amd64 Packages
Hit http://security.debian.org wheezy/updates/main Translation-en
Hit http://repo.percona.com wheezy Release.gpg
Hit http://ftp.us.debian.org wheezy Release.gpg
Hit http://repo.percona.com wheezy Release
Hit http://repo.percona.com wheezy/main Sources
Hit http://ftp.us.debian.org wheezy-updates Release.gpg
Hit http://repo.percona.com wheezy/main amd64 Packages
Hit http://ftp.us.debian.org wheezy Release
Hit http://ftp.us.debian.org wheezy-updates Release
Hit http://ftp.us.debian.org wheezy/main Sources
Ign http://repo.percona.com wheezy/main Translation-en
Hit http://ftp.us.debian.org wheezy/main amd64 Packages
Hit http://ftp.us.debian.org wheezy/main Translation-en
Hit http://ftp.us.debian.org wheezy-updates/main Sources
Hit http://ftp.us.debian.org wheezy-updates/main amd64 Packages/DiffIndex
Hit http://ftp.us.debian.org wheezy-updates/main Translation-en/DiffIndex

Then I run this command: apt-get upgrade

If I look at the folder /usr/bin I dont see any files named innobackupex .
If I run this command: innobackupex --user=USER–password=PW /backups
I get this error:
innobackupex: command not found
Trying this command: /usr/bin/innobackupex --user=USER–password=PW /backups
Doest work too.

Its seems like the software is not installed.

Hi tomer;

Looks like you still need to actually do the install.

  1. Install the key:

apt-key adv --keyserver keys.gnupg.net --recv-keys 1C4CBDCDCD2EFD2A

  1. Then install Xtrabackup:

apt-get install xtrabackup

-Scott

Thanks its working :slight_smile:

Is there an option to schedule the backups? using cron jobs or something like this?

You can schedule the backups via crontab, you can schedule the backup command or may be write some nice shell script for this purpose.

You have may examples for this script?