Skip to content
Snippets Groups Projects
Commit 46ecb067 authored by Jan Frenzel's avatar Jan Frenzel Committed by Apurv Deepak Kulkarni
Browse files

Apply 3 suggestion(s) to 2 file(s)

parent 58f7da6d
No related branches found
No related tags found
3 merge requests!412Manual attempt to merge preview into main,!402Solved issue-194. Added missing information regarding usage of SSH config for...,!385Solved issue-194. Added missing information regarding usage of SSH config for...
...@@ -99,6 +99,15 @@ Host taurus ...@@ -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. #Enable X11 forwarding for graphical applications and compression. You don't need parameter -X and -C when invoking ssh then.
ForwardX11 yes ForwardX11 yes
Compression 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: Afterwards, you can connect to the ZIH system using:
...@@ -106,8 +115,9 @@ Afterwards, you can connect to the ZIH system using: ...@@ -106,8 +115,9 @@ Afterwards, you can connect to the ZIH system using:
```console ```console
marie@local$ ssh taurus 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 ### X11-Forwarding
......
...@@ -12,7 +12,11 @@ The export nodes are reachable under the hostname `taurusexport.hrsk.tu-dresden. ...@@ -12,7 +12,11 @@ The export nodes are reachable under the hostname `taurusexport.hrsk.tu-dresden.
## Access From Linux ## Access From Linux
There are at least three tool to exchange data between your local workstation and ZIH systems. All 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 ### SCP
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment