BwUniCluster3.0/Login/Client: Difference between revisions
(11 intermediate revisions by the same user not shown) | |||
Line 46: | Line 46: | ||
MobaXterm can either be installed or used as portable software without installation. Please refer to [https://mobaxterm.mobatek.net/download-home-edition.html MobaXterm Home Edition]. |
MobaXterm can either be installed or used as portable software without installation. Please refer to [https://mobaxterm.mobatek.net/download-home-edition.html MobaXterm Home Edition]. |
||
=== Set up a SSH |
=== Set up a SSH session === |
||
Please have a look at the "SSH client" tab in the [https://mobaxterm.mobatek.net/demo.html MobaXterm live demo]. |
Please have a look at the "SSH client" tab in the [https://mobaxterm.mobatek.net/demo.html MobaXterm live demo]. |
||
Line 53: | Line 53: | ||
# Click the "Session" button in the top task bar or "Sessions">"New Session" in the menu |
# Click the "Session" button in the top task bar or "Sessions">"New Session" in the menu |
||
# Select the session type "SSH" in the Session settings |
# Select the session type "SSH" in the Session settings |
||
# Fill in the following fields:<br><code>Remote |
# Fill in the following fields:<br><code>Remote host: <hostname></code><br><code>Specify username: <username></code><br><code>Port : 22</code> |
||
⚫ | |||
=== Start a SSH session === |
|||
⚫ | |||
After setting up a SSH session, you can connect to the respective server by double-clicking the entry in the "Sessions" list or by right-clicking and "Execute" the entry. |
|||
A terminal will be opened and there you can enter your credentials. |
|||
A terminal will be opened, here you can enter your credentials, [[Registration/2FA | TOTP]] and [[Registration/Password | service password]]. |
|||
Now your are logged in to the login node of the respective server. |
|||
⚫ | |||
Then click on the "Connect" button. |
|||
⚫ | Files can be transferred between the local system and the cluster by navigating to the respective folders in the split file view and then either drag & drop files and folders between the views or by clicking on a file/folder with the right mouse button and then selecting "Upload" or "Download" from the menu. |
||
'''Configuration needed!'''<br> |
|||
⚫ | Files can be transferred between the local system and the cluster by navigating to the respective folders in the split file view and then either |
||
⚫ | |||
⚫ | |||
'''Attention!'''<br> |
|||
⚫ | |||
We explicitly advise against transferring large files, many files or directories by means of drag & drop or via the Upload/Download functionality. Instead, MobaXterm comes with the [[Data_Transfer/Rsync|rsync]] functionality, which supports incremental file transfer over SSH. |
|||
⚫ | |||
Just open a local terminal in MobaXterm and navigate to the directory inside the Windows file system you want to synchronize. Use [[Data_Transfer/Rsync|rsync]] from here. |
|||
⚫ | |||
== Windows Subsystem for Linux == |
== Windows Subsystem for Linux == |
||
Windows Subsystem for Linux (WSL) is not a SSH client but a very tightly integrated, fully-fledged Linux operating system that can be installed and used like a normal Windows application. |
|||
After installing a |
After installing a Linux distribution of choice, you can use the instructions for Linux, e.g. for SSH connections, file transfers, X11 forwarding and other tasks. |
||
WSL is for you if you have to use a Windows computer, e.g. provided by your employer, and if you want to benefit from all the tools and features for code development, debugging and connectivity to HPC systems that Linux provides. |
|||
⚫ | |||
⚫ |
Latest revision as of 18:08, 26 February 2025
SSH Clients
Only Secure Shell (SSH) is permitted for login to the bwHPC clusters. On order to establish a SSH connection, the users need a SSH client installed on their device. The following clients are suitable for connecting to the bwHPC clusters.
Pre-installed SSH Clients
All common operation systems, such as Microsoft Windows, Linux, Mac OS or other Unix-like operating systems come with a built-in SSH client, most likely provided by the OpenSSH project.
To use this client, simply open a command line terminal. Depending on your operating system, the required application is called Terminal, Console, PowerShell, Windows-Terminal or similar. Inside this terminal, enter the following command to connect to a cluster:
$ ssh <username>@<hostname>
<username>
is your local username including the prefix (cf. Login Username)<hostname>
is the hostname of the cluster you want to connect to (cf. Login Hostnames)
For KIT user "ab1234" who wants to connect to bwUniCluster 3.0, this would yield:
$ ssh ka_ab1234@uc3.scc.kit.edu
For a more detailed explanation on how to do SSH login, please refer to Login Examples.
File Transfer
All native SSH clients already come with a remote file copy application: scp
.
For a more detailed explanation on how to do data transfers with scp, please refer to Data_Transfer/SCP.
X11 Forwarding
If you are on a Linux or Unix system and want to use a GUI-based application, you can use the -X
option for the ssh command to set up X11 forwarding:
$ ssh -X <username>@<hostname>
If you want to use X11 forwarding on Microsoft Windows, please refer to MobaXterm.
Alternative SSH Clients
Using Microsoft Windows, some handy features of Unix-based operating systems are lacking, such as X11 forwarding or file transfer tools like rsync. Therfore, we suggest to have a look at the following tools.
MobaXterm
If the built-in SSH functionalities on Windows are not sufficient, the bwHPC support team recommends to use MobaXterm.
MobaXterm provides a built-in X11 server allowing to start GUI based software. It also supports graphical file transfer via drag & drop, although we explicitly advise against this, especially when transferring more than a few files.
Installation
MobaXterm can either be installed or used as portable software without installation. Please refer to MobaXterm Home Edition.
Set up a SSH session
Please have a look at the "SSH client" tab in the MobaXterm live demo.
The steps to define a SSH session are the following:
- Click the "Session" button in the top task bar or "Sessions">"New Session" in the menu
- Select the session type "SSH" in the Session settings
- Fill in the following fields:
Remote host: <hostname>
Specify username: <username>
Port : 22
- Click OK
Start a SSH session
After setting up a SSH session, you can connect to the respective server by double-clicking the entry in the "Sessions" list or by right-clicking and "Execute" the entry. A terminal will be opened, here you can enter your credentials, TOTP and service password. Now your are logged in to the login node of the respective server.
File Transfers
Files can be transferred between the local system and the cluster by navigating to the respective folders in the split file view and then either drag & drop files and folders between the views or by clicking on a file/folder with the right mouse button and then selecting "Upload" or "Download" from the menu.
Configuration needed!
With recent MobaXterm versions, the following configuration change has to be made in advance:
In the top menu bar click: "Settings">"Configuration">"SSH", switch the "SSH engine" from "<new>" to "<legacy>". Then restart MobaXterm.
Attention!
We explicitly advise against transferring large files, many files or directories by means of drag & drop or via the Upload/Download functionality. Instead, MobaXterm comes with the rsync functionality, which supports incremental file transfer over SSH.
Just open a local terminal in MobaXterm and navigate to the directory inside the Windows file system you want to synchronize. Use rsync from here.
Windows Subsystem for Linux
Windows Subsystem for Linux (WSL) is not a SSH client but a very tightly integrated, fully-fledged Linux operating system that can be installed and used like a normal Windows application.
After installing a Linux distribution of choice, you can use the instructions for Linux, e.g. for SSH connections, file transfers, X11 forwarding and other tasks.
WSL is for you if you have to use a Windows computer, e.g. provided by your employer, and if you want to benefit from all the tools and features for code development, debugging and connectivity to HPC systems that Linux provides.
For installing WSL and a Linux distribution, pelase refer to Windows Subsystem for Linux.