Skip to content

Commit 6842c14

Browse files
xuzhanghengkbdharun
authored andcommitted
slurm*: add pages (#11133)
Author: xuzhangheng <[email protected]> Co-authored-by: Magrid <[email protected]> Co-authored-by: K.B.Dharun Krishna <[email protected]>
1 parent 5b4a496 commit 6842c14

File tree

5 files changed

+105
-0
lines changed

5 files changed

+105
-0
lines changed

pages/linux/slurmctld.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# slurmctld
2+
3+
> Monitor all other Slurm daemons and resources, accept work (jobs), and allocate resources to those jobs.
4+
> More information: <https://slurm.schedmd.com/slurmctld.html>.
5+
6+
- Clear all previous `slurmctld` states from its last checkpoint:
7+
8+
`slurmctld -c`
9+
10+
- Set the daemon's nice value to the specified value, typically a negative number:
11+
12+
`slurmctld -n {{value}}`
13+
14+
- Write log messages to the specified file:
15+
16+
`slurmctld -L {{path/to/output_file}}`
17+
18+
- Display help:
19+
20+
`slurmctld -h`
21+
22+
- Display version:
23+
24+
`slurmctld -V`

pages/linux/slurmd.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# slurmd
2+
3+
> Monitors all tasks running on the compute node, accepts tasks, launches tasks, and kills running tasks upon request.
4+
> More information: <https://slurm.schedmd.com/slurmd.html>.
5+
6+
- Report node rebooted when daemon restarted (Used for testing purposes):
7+
8+
`slurmd -b`
9+
10+
- Run the daemon with the given nodename:
11+
12+
`slurmd -N {{nodename}}`
13+
14+
- Write log messages to the specified file:
15+
16+
`slurmd -L {{path/to/output_file}}`
17+
18+
- Read configuration from the specified file:
19+
20+
`slurmd -f {{path/to/file}}`
21+
22+
- Display help:
23+
24+
`slurmd -h`

pages/linux/slurmdbd.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# slurmdbd
2+
3+
> Provides a secure enterprise-wide interface to a database for Slurm.
4+
> More information: <https://slurm.schedmd.com/slurmdbd.html>.
5+
6+
- Set the daemon's nice value to the specified value, typically a negative number:
7+
8+
`slurmdbd -n {{value}}`
9+
10+
- Change the working directory of `slurmdbd` to the LogFile path or to `/var/tmp`:
11+
12+
`slurmdbd -s`
13+
14+
- Display help:
15+
16+
`slurmdbd -h`
17+
18+
- Display version:
19+
20+
`slurmdbd -V`

pages/linux/slurmrestd.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# slurmrestd
2+
3+
> Interface to Slurm via REST API. It can be used in two modes: *Inetd Mode* & *Listen Mode*.
4+
> More information: <https://slurm.schedmd.com/slurmrestd.html>.
5+
6+
- Change the group ID (and drop supplemental groups) before processing client requests:
7+
8+
`slurmrestd --g {{group_id}} {{[host]:port | unix:/path/to/socket}}`
9+
10+
- Comma-delimited list of authentication plugins to load:
11+
12+
`slurmrestd -a {{authentication_plugins}} {{[host]:port | unix:/path/to/socket}}`
13+
14+
- Read Slurm configuration from the specified file:
15+
16+
`slurmrestd -f {{path/to/file}}`
17+
18+
- Change user ID before processing client request:
19+
20+
`slurmrestd -u {{user_id}}`
21+
22+
- Display help:
23+
24+
`slurmrestd -h`
25+
26+
- Display version:
27+
28+
`slurmrestd -V`

pages/linux/slurmstepd.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# slurmstepd
2+
3+
> Slurm daemon for managing and monitoring individual job steps within a multi-step job.
4+
> It should not be invoked manually.
5+
> More information: <https://slurm.schedmd.com/slurmstepd.html>.
6+
7+
- Start the daemon:
8+
9+
`slurmstepd`

0 commit comments

Comments
 (0)