slurm*: add pages (#11133)

Author:    xuzhangheng <48378279+xuzhangheng@users.noreply.github.com>
Co-authored-by: Magrid <magrid0@proton.me>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
pull/23/head
xuzhangheng 2023-10-22 17:02:51 +11:00 committed by K.B.Dharun Krishna
parent 5b4a496e01
commit 669a5b87d5
No known key found for this signature in database
GPG Key ID: 1B8ECA406788AFA4
5 changed files with 105 additions and 0 deletions

24
pages/linux/slurmctld.md Normal file
View File

@ -0,0 +1,24 @@
# slurmctld
> Monitor all other Slurm daemons and resources, accept work (jobs), and allocate resources to those jobs.
> More information: <https://slurm.schedmd.com/slurmctld.html>.
- Clear all previous `slurmctld` states from its last checkpoint:
`slurmctld -c`
- Set the daemon's nice value to the specified value, typically a negative number:
`slurmctld -n {{value}}`
- Write log messages to the specified file:
`slurmctld -L {{path/to/output_file}}`
- Display help:
`slurmctld -h`
- Display version:
`slurmctld -V`

24
pages/linux/slurmd.md Normal file
View File

@ -0,0 +1,24 @@
# slurmd
> Monitors all tasks running on the compute node, accepts tasks, launches tasks, and kills running tasks upon request.
> More information: <https://slurm.schedmd.com/slurmd.html>.
- Report node rebooted when daemon restarted (Used for testing purposes):
`slurmd -b`
- Run the daemon with the given nodename:
`slurmd -N {{nodename}}`
- Write log messages to the specified file:
`slurmd -L {{path/to/output_file}}`
- Read configuration from the specified file:
`slurmd -f {{path/to/file}}`
- Display help:
`slurmd -h`

20
pages/linux/slurmdbd.md Normal file
View File

@ -0,0 +1,20 @@
# slurmdbd
> Provides a secure enterprise-wide interface to a database for Slurm.
> More information: <https://slurm.schedmd.com/slurmdbd.html>.
- Set the daemon's nice value to the specified value, typically a negative number:
`slurmdbd -n {{value}}`
- Change the working directory of `slurmdbd` to the LogFile path or to `/var/tmp`:
`slurmdbd -s`
- Display help:
`slurmdbd -h`
- Display version:
`slurmdbd -V`

28
pages/linux/slurmrestd.md Normal file
View File

@ -0,0 +1,28 @@
# slurmrestd
> Interface to Slurm via REST API. It can be used in two modes: *Inetd Mode* & *Listen Mode*.
> More information: <https://slurm.schedmd.com/slurmrestd.html>.
- Change the group ID (and drop supplemental groups) before processing client requests:
`slurmrestd --g {{group_id}} {{[host]:port | unix:/path/to/socket}}`
- Comma-delimited list of authentication plugins to load:
`slurmrestd -a {{authentication_plugins}} {{[host]:port | unix:/path/to/socket}}`
- Read Slurm configuration from the specified file:
`slurmrestd -f {{path/to/file}}`
- Change user ID before processing client request:
`slurmrestd -u {{user_id}}`
- Display help:
`slurmrestd -h`
- Display version:
`slurmrestd -V`

View File

@ -0,0 +1,9 @@
# slurmstepd
> Slurm daemon for managing and monitoring individual job steps within a multi-step job.
> It should not be invoked manually.
> More information: <https://slurm.schedmd.com/slurmstepd.html>.
- Start the daemon:
`slurmstepd`