blob: a47d3c55ee76c3887201a3c8afaaf005890460a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
1. restore the backup, this will take approximately the same amount of time as the backup took above:
```
server# cd /srv/leap/couchdb/scripts
server# time ./couchdb_restoreall.sh
```
1. start services again that were stopped in the beginning:
```
workstation$ leap ssh soledad-nodes
server# /etc/init.d/soledad-server start
workstation$ leap ssh mx-node
server# /etc/init.d/postfix start
server# /etc/init.d/leap-mx start
workstation$ leap ssh webapp
server# /etc/init.d/nickserver start
```
Or, alternately, if you set up the firewall rule instead, now remove it:
```
server# iptables -D INPUT -p tcp --dport 5984 --jump REJECT
```
|