1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
.TH slurmdbd "8" "Slurm Daemon" "April 2025" "Slurm Daemon"
.SH "NAME"
slurmdbd \- Slurm Database Daemon.
.SH "SYNOPSIS"
\fBslurmdbd\fR [\fIOPTIONS\fR...]
.SH "DESCRIPTION"
\fBslurmdbd\fR provides a secure enterprise\-wide interface to a database
for Slurm. This is particularly useful for archiving accounting records.
.SH "OPTIONS"
.TP
\fB\-D\fR
Run \fBslurmdbd\fR in the foreground with logging copied to stdout.
.IP
.TP
\fB\-h\fR
Help; print a brief summary of command options.
.IP
.TP
\fB\-n <value>\fR
Set the daemon's nice value to the specified value, typically a negative number.
.IP
.TP
\fB\-R[comma separated cluster name list]\fR
Reset the lft and rgt values of the associations in the given cluster list.
Lft and rgt values are used to distinguish hierarchical groups in the slurm
accounting database. This option should be very rarely used.
.IP
.TP
\fB\-s\fR
Change working directory of slurmdbd to LogFile path if possible, or to /var/tmp
otherwise.
.IP
.TP
\fB\-u\fR
Only display the Slurm Database version and if conversion is needed and exit
without taking control. If no conversion is needed 0 is returned, if conversion
is needed 1 is returned.
.IP
.TP
\fB\-v\fR
Verbose operation. Multiple \fBv\fR's can be specified, with each '\fBv\fR'
beyond the first increasing verbosity, up to 6 times (i.e. \-vvvvvv).
.IP
.TP
\fB\-V\fR
Print version information and exit.
.IP
.SH "ENVIRONMENT VARIABLES"
The following environment variables can be used to override settings
compiled into slurmdbd.
.TP
\fBABORT_ON_FATAL\fR
When a fatal error is detected, use abort() instead of exit() to terminate the
process. This allows backtraces to be captured without recompiling Slurm.
.IP
.SH "CORE FILE LOCATION"
If slurmdbd is started with the \fB\-D\fR option then the core file will be
written to the current working directory.
Otherwise if \fBLogFile\fR in "slurmdbd.conf" is a fully qualified
path name (starting with a slash), the core file will be written to
the same directory as the log file, provided SlurmUser has write
permission on the directory. Otherwise the core file will be written
to "/var/tmp/" as a last resort. If neither of the above directories
have write permission for SlurmUser, no core file will be produced.
.SH "SIGNALS"
.TP
\fBSIGTERM SIGINT SIGQUIT\fR
\fBslurmdbd\fR will shutdown cleanly, waiting for in\-progress rollups to
finish.
.IP
.TP
\fBSIGABRT\fR
\fBslurmdbd\fR will perform a core dump, then exit. In\-progress operations
are killed.
.IP
.TP
\fBSIGHUP\fR
Reloads the slurm configuration files, similar to 'scontrol reconfigure'.
.IP
.TP
\fBSIGUSR2\fR
Reread the log level from the configs, and then reopen the log file. This
should be used when setting up \fBlogrotate\fR(8).
.IP
.TP
\fBSIGCHLD SIGUSR1 SIGTSTP SIGXCPU SIGPIPE SIGALRM\fR
These signals are explicitly ignored.
.IP
.SH "NOTES"
It may be useful to experiment with different \fBslurmctld\fR specific
configuration parameters using a distinct configuration file
(e.g. timeouts). However, this special configuration file will not be
used by the \fBslurmd\fR daemon or the Slurm programs, unless you
specifically tell each of them to use it. If you desire changing
communication ports, the location of the temporary file system, or
other parameters used by other Slurm components, change the common
configuration file, \fBslurm.conf\fR.
.SH "COPYING"
Copyright (C) 2008 Lawrence Livermore National Security.
Copyright (C) 2010\-2022 SchedMD LLC.
Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
CODE\-OCEC\-09\-009. All rights reserved.
.LP
This file is part of Slurm, a resource management program.
For details, see <https://slurm.schedmd.com/>.
.LP
Slurm is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
.LP
Slurm is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details.
.SH "SEE ALSO"
\fBslurm.conf\fR(5), \fBslurmdbd.conf\fR(5), \fBslurmctld\fR(8)
|