Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
db061cfd
Commit
db061cfd
authored
22 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Add definitions for node address information in configuration file.
parent
15060c73
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/man/man5/slurm.conf.5
+46
-6
46 additions, 6 deletions
doc/man/man5/slurm.conf.5
with
46 additions
and
6 deletions
doc/man/man5/slurm.conf.5
+
46
−
6
View file @
db061cfd
...
...
@@ -16,15 +16,30 @@ The size of each line in the file is limited to 1024 characters.
.LP
The overall configuration parameters available include:
.TP
\fBBackupAddr\fR
The name of the machine where SLURM control functions are
executed in the event that \fBControlMachine\fR fails.
This should be a node name as returned by the hostname command,
without the full domain name (e.g. "lx0001").
By default the \fBBackupAddr\fR will be identical in value to
\fBBackupController\fR.
.TP
\fBBackupController\fR
The name of the machine where SLURM control functions are to be
executed in the event that ControlMachine fails. This node
executed in the event that
\fB
ControlMachine
\fR
fails. This node
may also be used as a compute server if so desired. It will come into service
as a controller only upon the failure of ControlMachine and will revert
to a "standby" mode when the ControlMachine becomes available once again.
This should be a node name without the full domain name (e.g. "lx0002").
While not essential, it is highly recommended that you specify a backup controller.
.TP
\fBControlAddr\fR
The name of the machine where SLURM control functions are executed.
This should be a node name as returned by the hostname command,
without the full domain name (e.g. "lx0001").
By default the \fBControlAddr\fR will be identical in value to
\fBControlMachine\fR.
.TP
\fBControlMachine\fR
The name of the machine where SLURM control functions are executed.
This should be a node name without the full domain name (e.g. "lx0001").
...
...
@@ -172,7 +187,8 @@ node specifications should be place in this file in consecutive order.
The node configuration specifies the following information:
.TP
\fBNodeName\fR
Name of a node as returned by hostname (e.g. "lx0012").
Name of a node as returned by the hostname command,
without the full domain name (e.g. "lx0012").
A simple regular expression may optionally
be used to specify ranges
of nodes to avoid building a configuration file with large numbers
...
...
@@ -199,6 +215,23 @@ If desired a feature may contain a numeric component indicating,
for example, processor speed.
By default a node has no features.
.TP
\fBNodeAddr\fR
Name that a node should be refered to in establishing
a communications path. This name will be used as an
argument to the gethostbyname() function for identification.
For example, "elx0012" might be used to designate
the ethernet address for node "lx0012". A simple regular
expression may optionally be used to specify ranges
of nodes. The regular expression can contain one
pair of square brackets with a sequence of comma separated
numbers and/or ranges of numbers separated by a "-"
(e.g. "elinux[0-64,128]").
If a regular express is used to designate multiple nodes,
they must exactly match the entries in the \fBNodeName\fR
(e.g. "NodeName=lx[0-7] NodeAddr="elx[0-7]").
By default the \fBNodeAddr\fR will be identical in value to
\fBNodeName\fR.
.TP
\fBRealMemory\fR
Size of real memory on the node in MegaBytes (e.g. "2048").
The default value is 1.
...
...
@@ -316,9 +349,13 @@ are "UP" or "DOWN". The default value is "UP".
.br
#
.br
ControlMachine=dev0 BackupController=dev1
ControlMachine=dev0 ControlAddr=edev0
.br
BackupController=dev1 BackupAddr=edev1
.br
Epilog=/usr/local/slurm/epilog Prolog=/usr/local/slurm/prolog
Epilog=/usr/local/slurm/epilog
.br
Prolog=/usr/local/slurm/prolog
.br
FastSchedule=1
.br
...
...
@@ -354,9 +391,11 @@ JobCredentialPublicCertificate=/usr/local/slurm/public.cert
.br
#
.br
NodeName=DEFAULT Procs=2 RealMemory=2000 TmpDisk=64000 State=UNKNOWN
NodeName=DEFAULT Procs=2 RealMemory=2000 TmpDisk=64000
.br
NodeName=DEFAULT State=UNKNOWN
.br
NodeName=dev[0-25] Weight=16
NodeName=dev[0-25]
NodeAddr=edev[0-25]
Weight=16
.br
#
.br
...
...
@@ -391,4 +430,5 @@ details.
/etc/slurm.conf
.SH "SEE ALSO"
.LP
\fBgethostbyname\fR(3), \fBgroup\fR(5), \fBhostname\fR(1),
\fBscontrol\fR(1), \fBslurmctld\fR(8), \fBslurmd\fR(8)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment