admin wiki page

This commit is contained in:
Ben Harris 2018-06-09 21:16:31 -04:00
parent 15a3390935
commit 806bc91b00
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
---
author: ~ben
published: false
title: administration
description: advanced ssh tutorial
category:
- main
---
# administration
---
## adding users
1. create a new user account:
```bash
sudo adduser newusername
```
use the default password `tilde`
1. respond to their email with their account information
1. click the link in the signup email from the server to open the domain control panel and add their forwarding address if they've opted in
1. profit??
---
## backups
tilde.team uses [tarsnap](https://tarsnap.com) for backups and is configured to save 12 hourly backups, 7 daily backups, 6 weekly backups, and 2 years' worth of monthly backups.
to see a list of the backups:
```bash
sudo tarsnap --list-archives
```
to restore a backup:
```bash
tarsnap -x -f mybackup-2015-08-09_19-37-20
```
we keep backups of:
* `/home`
* `/etc`
* `/var` (excluding `/var/log`)
see the [tarsnap documentation](https://www.tarsnap.com/usage.html) for more information.