This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
quick:start [2021/03/05 13:30] kevin |
quick:start [2026/06/11 11:17] (current) kevin [Logging in for the First Time] |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| This guide is intended for experienced HPC users and provides a summary of the essential components of the systems available at the CHPC. For more detailed information on the subjects below see the full [[guide: | This guide is intended for experienced HPC users and provides a summary of the essential components of the systems available at the CHPC. For more detailed information on the subjects below see the full [[guide: | ||
| - | |||
| - | **NOTE: the new system is still under construction and information here and in the User Guide is incomplete and subject to sudden change.** | ||
| //docti cave// | //docti cave// | ||
| + | |||
| + | ==== Video tutorials for newcomers ==== | ||
| + | If you are a new user to the CHPC, please watch these videos: | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ====Mailing List==== | ||
| + | |||
| + | The **[[https:// | ||
| =====Overview: | =====Overview: | ||
| - | The CHPC' | + | The CHPC's Dell Linux cluster |
| - | The new system is an homogeneous cluster, comprising Intel 5th generation CPUs. As of March 2017 it has 1368 compute nodes with 24 cores and 128 GiB* memory | + | The new system is an homogeneous cluster, comprising Intel 5th generation CPUs. As of May 2025 it has 41 nodes with 24 cores and 256 GiB memory, 784 compute nodes with 24 cores and 128 GiB* memory, 355 nodes with 24 cores and 64 GiB memory, and four large memory " |
| - | * Maximum available memory on each type of node: '' | + | * Maximum available memory on each type of node: '' |
| Line 29: | Line 38: | ||
| </ | </ | ||
| + | ====Logging in for the First Time==== | ||
| - | The new system is running CentOS 7.0 and uses the //Bash// shell by default. | + | :!: You will use a password only for the **first time** you log in using ssh. And the first step will be to set up your ssh key. After this, you **can only log in using ssh keys and your password will be disabled.** |
| - | You should change your password after logging in the first time. | + | Please read carefully and follow |
| - | To change | + | |
| - | Rules are: 10 characters, with at least one of the following character types: upper and lower case, numbers, and special characters. | + | |
| - | Once you have logged in, give some consideration to how you will be using your session on the login node. If you are going to spend a long time logged in, doing a variety of tasks, it is best to get yourself [[http:// | + | |
| + | ====Long Interactive Sessions==== | ||
| + | |||
| + | Once you have logged in, give some consideration to how you will be using your session on the login node. If you are going to spend a long time logged in, doing a variety of tasks, it is best to get yourself | ||
| + | |||
| + | The new system is running [[quick: | ||
| ====Trouble Logging in?==== | ====Trouble Logging in?==== | ||
| Line 97: | Line 110: | ||
| ^ Mount point ^ File System ^ Size ^ Quota ^ Backup ^ Access | ^ Mount point ^ File System ^ Size ^ Quota ^ Backup ^ Access | ||
| - | | ''/ | + | | ''/ |
| | ''/ | | ''/ | ||
| - | | ''/ | + | | ''/ |
| - | | ''/ | + | | ''/ |
| + | |||
| + | :!: **IMPORTANT NOTE:** Files older than 90 days on ''/ | ||
| + | |||
| + | **Note [1]** Unfortunately, | ||
| - | **Note | + | **Note |
| - | :!: **IMPORTANT NOTE:** Files older than 90 days on '' | + | **Note [3]** Access to '' |
| - | **Note 2:** Access | + | It is essential that all files that your job script writes |
| + | It is usually okay to keep binaries and libraries on home since they are read once and loaded into RAM when your executable launches. But you may notice improved performance if they are also on Lustre. | ||
| ====Quotas==== | ====Quotas==== | ||
| Line 240: | Line 258: | ||
| | smp | 24 | 24 | 20 | 10 | 96 | For single-node parallel jobs. | | | | smp | 24 | 24 | 20 | 10 | 96 | For single-node parallel jobs. | | | ||
| ^ normal | ^ normal | ||
| - | | large | 2400 | 264 | 10 | 5 | | + | | large | 2400 | 264 | 10 | 5 | |
| + | | xlarge | ||
| | express | | express | ||
| | bigmem | | bigmem | ||
| Line 249: | Line 268: | ||
| | gpu_3 | 36 | 1 | | 2 | 12 | Up to 36 cpus, 3 GPUs | | | | gpu_3 | 36 | 1 | | 2 | 12 | Up to 36 cpus, 3 GPUs | | | ||
| | gpu_4 | 40 | 1 | | 2 | 12 | Up to 40 cpus, 4 GPUs | | | | gpu_4 | 40 | 1 | | 2 | 12 | Up to 40 cpus, 4 GPUs | | | ||
| - | | gpu_long | 20 | 1 | | | + | | gpu_long | 20 | 1 | | |
| Line 335: | Line 354: | ||
| <code bash> | <code bash> | ||
| #!/bin/bash | #!/bin/bash | ||
| - | #PBS -l ncpus=24: | + | #PBS -l select=1:ncpus=24: |
| #PBS -P PRJT1234 | #PBS -P PRJT1234 | ||
| #PBS -q smp | #PBS -q smp | ||
| Line 342: | Line 361: | ||
| #PBS -e / | #PBS -e / | ||
| #PBS -m abe | #PBS -m abe | ||
| - | #PBS -WMail_Users=youremail@ddress | + | #PBS -M youremail@ddress |
| ulimit -s unlimited | ulimit -s unlimited | ||
| Line 368: | Line 387: | ||
| #PBS -e / | #PBS -e / | ||
| #PBS -m abe | #PBS -m abe | ||
| - | #PBS -WMail_Users=youremail@ddress | + | #PBS -M youremail@ddress |
| ulimit -s unlimited | ulimit -s unlimited | ||
| . / | . / | ||