-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
command-reference: remote: add: add a note about SSH/SFTP quirks
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -250,6 +250,17 @@ $ dvc remote add myremote gs://bucket/path | |
$ dvc remote add myremote ssh://[email protected]/path/to/dir | ||
``` | ||
|
||
> **NOTE!** DVC requires SSH and SFTP access to work properly. Please use `ssh` | ||
> and `sftp` CLI commands to ensure that you are able to connect to your remote. | ||
> **NOTE!** Your server's SFTP root might differ from the physical root | ||
> (see `ChrootDirectory` config option in `/etc/ssh/sshd_config`), in which | ||
> case you have to specify `/path/to/dir` component of the remote url relative | ||
> to the SFTP root and not the physical root. For example, on some Synology NASes | ||
> your SFTP root might correspond to a physical directory `/volume1`, in which | ||
> case you should specify something like `ssh://[email protected]/path/to/dir` | ||
> instead of `ssh://[email protected]/volume1/path/to/dir`. | ||
</details> | ||
|
||
<details> | ||
|