Skip to content

Admin Manual

Henri edited this page Jan 27, 2015 · 31 revisions

Admin Manual

Setup

SMTP

Test that your SMTP service is properly configured with tools such as MXToolBox.

Backup

There are several ways to backup your PEPS data, including using rsync directly at the host running the containers. However, to ensure data integrity, we can use first mongodump to generate a fixed backup:

# Backup of raw data (content, files)
docker exec -it peps_mongod mongodump -h HOST -d rawdata --out /data/backup/BACKUPNAME
# Backup of metadata
docker exec -it peps_mongod mongodump -h HOST -d webmail --out /data/backup/BACKUPNAME

PEPS Update

Run make update to update the PEPS containers to the latest version. Your data is naturally untouched.

Power Users

You can open a mongo session to directly connect to the PEPS database backend by typing:

docker exec -i -t peps_mongod mongo
Clone this wiki locally