Difference between revisions of "User:Jan-steiner-c1cc@uni-bonn.de"

From HPC Wiki
Jump to navigation Jump to search
Line 2: Line 2:
  
 
https://hpc-wiki.info/hpc/User:Jan-steiner-c1cc@uni-bonn.de/subpagetest
 
https://hpc-wiki.info/hpc/User:Jan-steiner-c1cc@uni-bonn.de/subpagetest
 +
You can create an SSH connection with OpenSSH in your Linux terminal with the <code>ssh</code> command:
  
 +
<syntaxhighlight lang="bash">
 +
ssh &lt;username&gt;@&lt;cluster-address&gt;
 +
</syntaxhighlight>
  
A simple configuration would be:
+
Here
 
 
<pre>Host <identifier> # Choose any meaningful name here
 
    HostName <cluster-address>
 
    User <username></pre>
 
 
 
The first line specifies a custom name for your shortcut.
 
 
 
For a connection with X11 forwarding, the SSH connection needs to be started with the <code>-X</code> option:
 
 
 
<pre>$ ssh -X &lt;username&gt;@&lt;cluster-address&gt;</pre>
 
Alternatively, the <code>-Y</code> option does mostly the same. The difference with <code>-Y</code> however is that the connection is treated as ''trusted'', meaning fewer security checks are performed. This is thus only recommended if an application does not work with <code>-X</code>.
 

Revision as of 18:19, 3 July 2023

Subpages:

https://hpc-wiki.info/hpc/User:Jan-steiner-c1cc@uni-bonn.de/subpagetest You can create an SSH connection with OpenSSH in your Linux terminal with the ssh command:

ssh &lt;username&gt;@&lt;cluster-address&gt;

Here