2017-03-15 06:40:33 +00:00
|
|
|
|
---
|
2020-01-18 00:18:09 +00:00
|
|
|
|
layout: api
|
|
|
|
|
page_title: /sys/remount - HTTP API
|
|
|
|
|
description: >-
|
|
|
|
|
The '/sys/remount' endpoint is used remount a mounted backend to a new
|
|
|
|
|
endpoint.
|
2017-03-15 06:40:33 +00:00
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
# `/sys/remount`
|
|
|
|
|
|
|
|
|
|
The `/sys/remount` endpoint is used remount a mounted backend to a new endpoint.
|
|
|
|
|
|
2017-09-21 21:14:40 +00:00
|
|
|
|
## Move Backend
|
2017-03-15 06:40:33 +00:00
|
|
|
|
|
2017-09-21 21:14:40 +00:00
|
|
|
|
This endpoint moves an already-mounted backend to a new mount point.
|
2017-03-15 06:40:33 +00:00
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
|
| Method | Path |
|
|
|
|
|
| :----- | :------------- |
|
|
|
|
|
| `POST` | `/sys/remount` |
|
2017-03-15 06:40:33 +00:00
|
|
|
|
|
|
|
|
|
### Parameters
|
|
|
|
|
|
|
|
|
|
- `from` `(string: <required>)` – Specifies the previous mount point.
|
|
|
|
|
|
|
|
|
|
- `to` `(string: <required>)` – Specifies the new destination mount point.
|
|
|
|
|
|
|
|
|
|
### Sample Payload
|
|
|
|
|
|
|
|
|
|
```json
|
|
|
|
|
{
|
|
|
|
|
"from": "secret",
|
|
|
|
|
"to": "new-secret"
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Sample Request
|
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
|
```shell-session
|
2017-03-15 06:40:33 +00:00
|
|
|
|
$ curl \
|
|
|
|
|
--header "X-Vault-Token: ..." \
|
|
|
|
|
--request POST \
|
|
|
|
|
--data @payload.json \
|
2018-03-23 15:41:51 +00:00
|
|
|
|
http://127.0.0.1:8200/v1/sys/remount
|
2017-03-15 06:40:33 +00:00
|
|
|
|
```
|