Skip to content

Instantly share code, notes, and snippets.

@TacoSteemers
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TacoSteemers/11060507 to your computer and use it in GitHub Desktop.
Save TacoSteemers/11060507 to your computer and use it in GitHub Desktop.
backuppc installation
In my setup, /var/lib/backuppc is a soft link to a directory on a different filesystem, lets say /backup
Problem one: could not start the service
Solved by setting
chmod g+s /backup
chown -R backuppc /backup
Problem two: web interface would not come up
Solved by running (as root):
chmod 777 /etc/apache2/apache2.conf
cat /etc/backuppc/apache.conf >> /etc/apache2/apache2.conf
chmod 644 /etc/apache2/apache2.conf
/etc/init.d/apache2 stop
/etc/init.d/apache2 start
Source
http://ubuntuforums.org/showthread.php?t=1576748
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment