diff options
author | 2024-06-13 15:09:51 +0200 | |
---|---|---|
committer | 2024-06-13 15:09:51 +0200 | |
commit | 38cd889f7b24a91bc6399e1eaf432b7146438c84 (patch) | |
tree | f79da12856fa4273a86ca6423c0c726f919e7ed0 /docs/admin/database_maintenance.md | |
parent | [chore] Update move test (#3005) (diff) | |
download | gotosocial-38cd889f7b24a91bc6399e1eaf432b7146438c84.tar.xz |
[docs] Add optional instructions for replicating SQLite for disaster recovery (#2981)
* Add optional instructions for replicating SQLite for disaster recovery
* Remove references to MacOS from replicating-sqlite.md
Resolve comment on review
* Add mention for replicating SQLite in database_maintenance.md
Adds a reference to the replicating sqlite page under database maintenance
Diffstat (limited to 'docs/admin/database_maintenance.md')
-rw-r--r-- | docs/admin/database_maintenance.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/admin/database_maintenance.md b/docs/admin/database_maintenance.md index eedf6d1b7..e937e7777 100644 --- a/docs/admin/database_maintenance.md +++ b/docs/admin/database_maintenance.md @@ -46,6 +46,10 @@ The basic steps are: 2. While connected to your GoToSocial database file in the `sqlite3` shell, run `VACUUM;` (this may take quite a few minutes). 3. Start GoToSocial. +### Replication + +It's a common practice to set up safeguards for your database like replication. SQLite can be replicated using external software. The basic steps are described on the [Replicating SQLite](../advanced/replicating-sqlite.md) page. + ## Postgres TODO: Maintenance recommendations for Postgres. |