Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/usage/restore-physical.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@
1. Shut down all `mongos` nodes as the database won't be available while the restore is in progress.
2. Shut down all `pmm-agent` and other clients that can do the write operations to the database. This is required to ensure data consistency after the restore.
3. Stop the arbiter nodes manually since there's no `pbm-agent` on these nodes to do that automatically.
4. Check that the `systemctl` restart policy for the `pbm-agent.service` is not set to `always` or `on-success`:
4. Check that the `systemctl` restart policy for the `pbm-agent.service` and `mongod.service` processes is not set to `always` or `on-success`:

Check notice on line 22 in docs/usage/restore-physical.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/usage/restore-physical.md#L22

[Google.Contractions] Use 'isn't' instead of 'is not'.
Raw output
{"message": "[Google.Contractions] Use 'isn't' instead of 'is not'.", "location": {"path": "docs/usage/restore-physical.md", "range": {"start": {"line": 22, "column": 105}}}, "severity": "INFO"}

```{.bash data-prompt="$"}
$ sudo systemctl show mongod.service | grep Restart
$ sudo systemctl show pbm-agent.service | grep Restart
```

Expand Down