Skip to content

Commit 665ed74

Browse files
authored
Merge pull request #1783 from bdunne/radjabov_appliance_upgrade
Radjabov appliance upgrade
2 parents 8dc2f7c + 26a9e4c commit 665ed74

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

appliances/backup_and_restore.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,22 @@ Before adding the cron job it would be best practice to mount an external storag
3535
# Restore
3636
Restoring a backup of the appliance will be done using SSH or the console.
3737

38-
1. Download a backup TGZ and place it in `/`
39-
2. On the command line:
38+
1. Set the hostname on the new appliance. On the command line:
39+
```bash
40+
hostnamectl hostname your-new-hostname.example.com
41+
echo "your.ip.address your-new-hostname.example.com your-new-hostname" >> /etc/hosts
42+
```
43+
2. Download a backup TGZ and place it in `/`
44+
3. On the command line:
4045
```bash
4146
cd /
42-
tar -zxf /backup
43-
rm -f /backup # if desired to save space
47+
tar -zxf /backup.tgz
48+
rm -f /backup.tgz # if desired to save space
4449
```
45-
3. Launch `appliance_console`
46-
1. If this is a brand new appliance and the database has not yet been initialized, select `Configure Application`. If this is an existing database appliance, this step can be skipped.
50+
4. Launch `appliance_console`
51+
1. Since the database has not yet been initialized, select `Configure Application`.
4752
1. When prompted to configure the database, select `Create Internal Database`
48-
2. When prompted to configure messaging, select `Make No messaging changes`
53+
2. When prompted to configure messaging, either connect to an external messaging system or configure this appliance as a messaging server
4954
3. Choose a database disk
5055
4. Answer y or n to "Should this appliance run as a standalone database server?"
5156
5. Enter a region number (0), this is not important and will be overwritten on restore
@@ -55,4 +60,4 @@ Restoring a backup of the appliance will be done using SSH or the console.
5560
3. Select `Restore Database From Backup`
5661
- Decide whether you want to delete the backup file in /tmp after restore. (Yes)
5762
4. Select `Start EVM Server Processes`
58-
4. After a few minutes, you can log into the web UI and see all of the data contained in the backup.
63+
5. After a few minutes, you can log into the web UI and see all of the data contained in the backup.

0 commit comments

Comments
 (0)