2016-10-26 02:20:24 +00:00
|
|
|
---
|
2020-09-01 15:14:13 +00:00
|
|
|
layout: commands
|
2020-04-07 18:55:19 +00:00
|
|
|
page_title: 'Commands: Snapshot Restore'
|
2016-10-26 02:20:24 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
# Consul Snapshot Restore
|
|
|
|
|
|
|
|
Command: `consul snapshot restore`
|
|
|
|
|
2022-01-11 13:26:58 +00:00
|
|
|
Corresponding HTTP API Endpoint: [\[PUT\] /v1/snapshot](/api-docs/snapshot#restore-snapshot)
|
2022-01-10 17:40:11 +00:00
|
|
|
|
2016-10-26 02:20:24 +00:00
|
|
|
The `snapshot restore` command is used to restore an atomic, point-in-time
|
|
|
|
snapshot of the state of the Consul servers which includes key/value entries,
|
|
|
|
service catalog, prepared queries, sessions, and ACLs. The snapshot is read
|
|
|
|
from the given file.
|
|
|
|
|
|
|
|
Restores involve a potentially dangerous low-level Raft operation that is not
|
|
|
|
designed to handle server failures during a restore. This command is primarily
|
|
|
|
intended to be used when recovering from a disaster, restoring into a fresh
|
2022-05-08 19:12:10 +00:00
|
|
|
cluster of Consul servers running the same version as the cluster from where the
|
|
|
|
snapshot was taken.
|
2016-10-26 02:20:24 +00:00
|
|
|
|
2022-01-10 21:44:56 +00:00
|
|
|
The table below shows this command's [required ACLs](/api#authentication). Configuration of
|
2022-03-30 21:16:26 +00:00
|
|
|
[blocking queries](/api-docs/features/blocking) and [agent caching](/api-docs/features/caching)
|
2022-01-10 21:44:56 +00:00
|
|
|
are not supported from commands, but may be from the corresponding HTTP endpoint.
|
|
|
|
|
|
|
|
| ACL Required |
|
|
|
|
| ------------ |
|
|
|
|
| `management` |
|
2016-10-26 02:20:24 +00:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
Usage: `consul snapshot restore [options] FILE`
|
|
|
|
|
|
|
|
#### API Options
|
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_client.mdx'
|
2020-04-07 23:56:08 +00:00
|
|
|
|
2020-04-07 18:55:19 +00:00
|
|
|
@include 'http_api_options_server.mdx'
|
2016-10-26 02:20:24 +00:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
To restore a snapshot from the file "backup.snap":
|
|
|
|
|
2020-05-19 18:32:38 +00:00
|
|
|
```shell-session
|
2016-10-26 02:20:24 +00:00
|
|
|
$ consul snapshot restore backup.snap
|
|
|
|
Restored snapshot
|
|
|
|
```
|
|
|
|
|
2022-03-30 21:16:26 +00:00
|
|
|
Please see the [HTTP API](/api-docs/snapshot) documentation for
|
2016-10-26 02:20:24 +00:00
|
|
|
more details about snapshot internals.
|