From 46ecb067690566c333935c1f82347ee7e07eb622 Mon Sep 17 00:00:00 2001 From: Jan Frenzel <jan.frenzel@tu-dresden.de> Date: Tue, 26 Oct 2021 09:41:05 +0200 Subject: [PATCH] Apply 3 suggestion(s) to 2 file(s) --- doc.zih.tu-dresden.de/docs/access/ssh_login.md | 14 ++++++++++++-- .../docs/data_transfer/export_nodes.md | 6 +++++- 2 files changed, 17 insertions(+), 3 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 9f8bb7b42..69dc79576 100644 --- a/doc.zih.tu-dresden.de/docs/access/ssh_login.md +++ b/doc.zih.tu-dresden.de/docs/access/ssh_login.md @@ -99,6 +99,15 @@ Host taurus #Enable X11 forwarding for graphical applications and compression. You don't need parameter -X and -C when invoking ssh then. ForwardX11 yes Compression yes +Host taurusexport + #For copying data without shell access + HostName taurusexport.hrsk.tu-dresden.de + #Put your ZIH-Login after keyword "User": + User marie + #Path to private key: + IdentityFile ~/.ssh/id_ed25519 + #Don't try other keys if you have more: + IdentitiesOnly yes ``` Afterwards, you can connect to the ZIH system using: @@ -106,8 +115,9 @@ Afterwards, you can connect to the ZIH system using: ```console marie@local$ ssh taurus ``` -!!!info - 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. + +If you want to copy data from/to ZIH systems, 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 858d066da..8143f27b9 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 @@ -12,7 +12,11 @@ The export nodes are reachable under the hostname `taurusexport.hrsk.tu-dresden. ## Access From Linux There are at least three tool to exchange data between your local workstation and ZIH systems. All -are explained in the following abstract in more detail. +are explained in the following section in more detail. + +!!! important + The following explanations require that you have already set up you [SSH configuration + ](../access/ssh_login.md#configuring-default-parameters-for-ssh). ### SCP -- GitLab