From 2f169472f6e9fb16ee57c5c5d0f17210d951afdd Mon Sep 17 00:00:00 2001 From: Apurv Kulkarni <apurv.kulkarni@tu-dresden.de> Date: Thu, 21 Oct 2021 13:01:06 +0200 Subject: [PATCH] Solved issue-194. Added missing information regarding usage of SSH config for data transfer using export nodes in 'access/ssh_login' and 'data_transfer/export_nodes' --- doc.zih.tu-dresden.de/docs/access/ssh_login.md | 2 +- doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc.zih.tu-dresden.de/docs/access/ssh_login.md b/doc.zih.tu-dresden.de/docs/access/ssh_login.md index 1eb2dcb07..dbfb45acb 100644 --- a/doc.zih.tu-dresden.de/docs/access/ssh_login.md +++ b/doc.zih.tu-dresden.de/docs/access/ssh_login.md @@ -107,7 +107,7 @@ Afterwards, you can connect to the ZIH system using: marie@local$ ssh taurus ``` !!!info - Please note that in above example login node `taurus.hrsk.tu-dresden.de` is used in configuration file to access shell in ZIH systems. SSH configuration file can also be used to perform data transfer from/to ZIH systems. An additional profile with same settings can be created. Simply replace login node in front of `HostName` with export node (eg. `taurusexport.hrsk.tu-dresden.de`) in the SSH configuration profile. Please refer to [Export Nodes: Transfer Data to/from ZIH's Filesystems](../data_transfer/export_nodes.md) for more information on export nodes. + Please note that in above example, login node `taurus.hrsk.tu-dresden.de` is used in configuration file in order to access shell in ZIH systems. SSH configuration file can also be used to perform data transfer from/to ZIH systems. An additional profile with same settings can be created. Simply replace login node in front of `HostName` with export node (eg. `taurusexport.hrsk.tu-dresden.de`) in the SSH configuration profile. Please refer to [Export Nodes: Transfer Data to/from ZIH's Filesystems](../data_transfer/export_nodes.md) for more information on export nodes. ### X11-Forwarding diff --git a/doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md b/doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md index 9230a16a7..858d066da 100644 --- a/doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md +++ b/doc.zih.tu-dresden.de/docs/data_transfer/export_nodes.md @@ -117,14 +117,15 @@ the local machine. HostName taurusexport.hrsk.tu-dresden.de [...] ``` + Once the configuration is created, user can initiate transfer simply using any of the tools mentioned above. ```console - # Transfer from ZIH system to local machine + # Transfer from ZIH system marie@local$ rsync -r <configuration_profile_name>:<directory_or_file> <target-location> - # Transfer from local machine to ZIH system - marie@local$ rsync -r <configuration_profile_name>:<directory_or_file> <target-location> + # Transfer to ZIH system + marie@local$ rsync -r <file_or_folder_on_local_machine> <configuration_profile_name>:<target-location> ``` ## Access From Windows -- GitLab