User Tools

Site Tools


guide:connect

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
guide:connect [2018/12/21 08:53]
ccrosby [Transferring Files]
guide:connect [2026/06/18 19:45] (current)
ccrosby [Connecting to the CHPC]
Line 2: Line 2:
  
 The CHPC hosts a supercomputer comprising: The CHPC hosts a supercomputer comprising:
-    * 1008 regular compute nodes with 24 cores and 128 GiB of RAM each; and +    * 1008 regular compute nodes with 24 cores and 128 GiB of RAM each;  
-    * large memory nodes with 56 cores 1TiB of RAM each+    * 360 regular computes nodes with 24 cores and 64 GiB of RAM each; 
 +    * large memory nodes with 56 cores and 1TiB of RAM each
 +    * 9 [[guide:gpu|GPU]] nodes.
  
-The cluster will be augmented in the future with: 
-  * a GPU-powered visualisation node; and 
-  * other specialised servers  
  
 =====Host Name===== =====Host Name=====
Line 21: Line 20:
 where //**''username''**// is replaced by the user name assigned to //your// account at the CHPC. where //**''username''**// is replaced by the user name assigned to //your// account at the CHPC.
  
 +
 +
 +===== Dedicated scp.chpc.ac.za =====
 +A dedicated node, ''**scp.chpc.ac.za**'' is available for scp file transfers:
 +<code>
 +  scp src.tar.gz username@scp.chpc.ac.za:~/lustre/
 +</code>
  
  
 ===== Transferring Files ===== ===== Transferring Files =====
  
-Use scp or sftp to transfer files to or from your home directory on the CHPC systems.  For example+**Large data sets should be transferred by means of [[howto:globus|Globus]].  Globus is faster and more reliable than scp.** 
 + 
 +You can also use scp or sftp to transfer files to or from your home directory on the CHPC systems.  For example
 <code> <code>
   scp src.tar.gz username@scp.chpc.ac.za:~/lustre/   scp src.tar.gz username@scp.chpc.ac.za:~/lustre/
 </code> </code>
-to copy the file //src.tar.gz// to your lustre directory on the CHPC cluster.  Please note that storage space in your home directory is very limited.  Large amounts of data should rather be transferred to your storage space on the lustre file system.  For a ** typical ** user, there will be a symbolic link to the user's directory on lustre, hence the ~/lustre/ target.  Alternatively, you may wish to copy directly to your lustre storage, in which case you could to the following:+to copy the file //src.tar.gz// to your lustre directory on the CHPC cluster.  **Please do not transfer files directly to lengau.chpc.ac.za.** It is a shared login node, and in order not to overload it, file transfer should be done to the dedicated scp server. Please note that storage space in your home directory is very limited.  Large amounts of data should rather be transferred to your storage space on the lustre file system.  For a ** typical ** user, there will be a symbolic link to the user's directory on lustre, hence the ~/lustre/ target.  Alternatively, you may wish to copy directly to your lustre storage, in which case you could do the following: 
 <code> <code>
   scp src.tar.gz username@scp.chpc.ac.za:/mnt/lustre/users/username/   scp src.tar.gz username@scp.chpc.ac.za:/mnt/lustre/users/username/
 </code> </code>
  
-  If you would like a more user-friendly method, consider [[https://filezilla-project.org|FileZilla]]+ 
 +If you would like a more user-friendly method, consider [[https://filezilla-project.org|FileZilla]]
  
 **Note:** use ''scp.chpc.ac.za'' as the server when transferring files. **Note:** use ''scp.chpc.ac.za'' as the server when transferring files.
  
  
-===== Dedicated scp.chpc.ac.za ===== 
-A dedicated node, ''**scp.chpc.ac.za**'' will become available for large or long-running transfers: 
-<code> 
-  scp src.tar.gz username@scp.chpc.ac.za:~/scratch/ 
-</code> 
  
 =====Recommended: ssh keys ===== =====Recommended: ssh keys =====
Line 95: Line 100:
 </code> </code>
 to allow other users to view your files. to allow other users to view your files.
 +
 +
 +====ssh error: REMOTE HOST IDENTIFICATION HAS CHANGED!====
 +
 +This error occurs if the keys used by the host are different from that used last time you connected to it.
 +
 +You can use
 +
 +  ssh-keygen -R badhost
 +
 +to remove all keys associated with the host //badhost// from your ''known_hosts'' file.
 +
 +This is safe to do because the new host key entry will be added back in next time you ssh in.
 +
 +
 +If you want to look at or edit the ''.ssh/known_hosts'' file, it is located in the ''.ssh'' sub-directory within your home directory on the //Lengau// cluster.
 +
 +For example, after logging in:
 +
 +<code bash>
 +cd .ssh/
 +ls
 +authorized_keys  id_ecdsa  id_ecdsa.pub  known_hosts
 +</code>
 +
 +
 +Once you have changed into the ''.ssh'' sub-directory you can then use an editor (e.g. ''nano known_hosts'') to edit the file and delete the bad line.
 +
 +
  
  
/app/dokuwiki/data/attic/guide/connect.1545375226.txt.gz · Last modified: 2021/12/09 16:42 (external edit)