Table of Contents | ||||||||
---|---|---|---|---|---|---|---|---|
|
(ภาษาไทย)
การใช้งานโปรแกรม Ansys
ขั้นตอนการรันโปรแกรม Ansys จะมี 2 ขั้นตอนหลัก คือ
...
1. การทำ passwordless
Note |
---|
ทำครั้งแรกครั้งเดียว หากไม่ทำจะไม่สามารถรันงานได้ |
การรันโปรแกรม Ansys บนระบบ TARA ครั้งแรก จะต้องทำ passwordless สำหรับการเข้าใช้งานเครื่อง computing units (ตัวอย่างเช่น compute nodes, memory nodes) บนระบบ TARA โดยสามารถทำตามขั้นตอนด้านล่าง ดังนี้
...
Table of Contents | ||||||||
---|---|---|---|---|---|---|---|---|
|
(ENGLISH)
How to run Ansys
ขั้นตอนการรันโปรแกรม Ansys จะมี 2 ขั้นตอนหลัก คือTo run Ansys, there are 2 major steps.
Table of Contents | ||||||
---|---|---|---|---|---|---|
|
1. Setting passwordless
Note |
---|
This step is required. You job cannot be run without this setting. You have to set this only once on your first run. |
To run ANSYS on TARA, you first have to set passwordless login to computing units (e.g. compute nodes, memory nodes) by following below instruction.
1.1 At TARA frontend, create Key for logging-in to TARA computing unit using
Code Block |
---|
ssh-keygen -t rsa -b 4096 -C "@tara.nstda.or.th" |
1.2 Specify details shown in the screen or left them blank and then press ENTER
Code Block |
---|
Enter file in which to save the key (/home/best/.ssh/id_rsa): <ไม่ต้องระบุข้อมูล> [ENTER]
Enter passphrase (empty for no passphrase): <ไม่ต้องระบุข้อมูล> [ENTER]
Enter same passphrase again: <ไม่ต้องระบุข้อมูล> [ENTER]
Your identification has been saved in /home/best/.ssh/id_rsa.
Your public key has been saved in /home/best/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:yilC3rKweLNBiupcOgavyewERZK17PntdFc1MXIPI0Y @tara.nstda.or.th
The key's randomart image is:
+---[RSA 4096]----+
|.oo .E * |
|.+ . . + * |
| + o .|
| o . . . |
|. = S . |
|+= o o o . |
|=o=.+ * . . |
|B**= + . . |
|XX+o . |
+----[SHA256]-----+ |
1.3 Check if the key (id_rsa.pub) is created using ls -l .ssh/
Code Block |
---|
ls -l .ssh/ total 8 -rw------- 1 test test 3243 May 21 17:39 id_rsa -rw-r--r-- 1 test test 743 May 21 17:39 id_rsa.pub |
1.4 Copy key to TARA computing unit, change [username] to your username
Code Block |
---|
ssh-copy-id -i .ssh/id_rsa.pub [username]@tara.nstda.or.th |
2. Submitting job
2.1 preparing script to run the job using the following command
...