When using SGE at a new company, the approach is somewhat different. Here are some notes.
Script Writing
After writing the script, it is not specified when submitting; instead, it is written into the script to be submitted and then directly qsub shell.sh
.
1 | #!/bin/bash |
Submitting a script containing the above content is essentially equivalent to:
1 | qsub -S /bin/bash \ |
qlogin Usage
For testing purposes, you can use qlogin
to log in to a compute node. Then, the operations performed on the compute node environment are consistent with submitting a script using qsub
.
```