You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello, I am trying to use that role, and I'm having the following problem:
barman@dbslave:/var/log/barman$ cat backup.log
Tue Jun 2 18:02:01 BRT 2015
/bin/sh: 1: barman: not found
barman@dbslave:/var/log/barman$ barman check solar_db
Server solar:
ssh: FAILED (return code: 255)
PostgreSQL: OK
archive_mode: OK
archive_command: OK
directories: OK
retention policy settings: OK
backup maximum age: OK (no last_backup_maximum_age provided)
compression settings: OK
minimum redundancy requirements: OK (have 0 backups, expected at least 0)
The barman executable is probably not in your $PATH. barman is installed with pip ala https://github.com/modcloth/ansible-role-modcloth-barman/blob/master/tasks/main.yml#L68-L69 - you should check your Python/pip setup as the barman user (barman by default). You may also want to use find to locate the executable on your system. Depending on your version of find, the command may look something like this:
sudo find / -type f -name barman -executable 2>/dev/null
hello, I am trying to use that role, and I'm having the following problem:
do you have any idea what I'm doing wrong?
The text was updated successfully, but these errors were encountered: