Differences between revisions 2 and 3
Revision 2 as of 2017-12-24 21:04:08
Size: 113
Comment:
Revision 3 as of 2017-12-24 21:27:10
Size: 406
Comment:
Deletions are marked like this. Additions are marked like this.
Line 9: Line 9:
=== GlusterFS ===
==== Backup ====
Make a backup of `/var/www`
{{{
cd /var
tar cfvzp www.tar.gz www/
}}}

==== GlusterFS Client ====
Install the glusterfs client and mount the glusterfs volume.

==== Restore ====
Restore the backup
{{{
tar xfvzp www.tar
rm www.tar.gz
}}}

Apache

Software

apt-get install apache2

GlusterFS

Backup

Make a backup of /var/www

cd /var
tar cfvzp www.tar.gz www/

GlusterFS Client

Install the glusterfs client and mount the glusterfs volume.

Restore

Restore the backup

tar xfvzp www.tar
rm www.tar.gz

apt-get install glusterfs-client

None: Apache (last edited 2021-03-26 21:55:30 by Kristian Kallenberg)