slurmdbd command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
slurmdbd: command not found
or when using sudo you get the following error message
sudo: slurmdbd: command not found
Solutions to slurmdbd: command not found
How To Fix slurmdbd: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu slurmdbd is provided by slurmdbd package.
slurmdbd is:
SLURM, the Simple Linux Utility for Resource Management, is an open-source cluster resource management and job scheduling. This package contain SlurmDBD (Slurm DataBase Daemon) that can be used to securely manage the accounting data for several Slurm clusters in a central location and sacctmgr a command for managing user accounts in SlurmDBD.
To fix this problem, we can install more using the command below.
sudo apt-get -y install slurmdbd
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install slurmdbd.
sudo apt -y install slurmdbd
Or if you have aptitude installed you can use the following command.
sudo aptitude install slurmdbd
Summary
In this tutorial we learn how to fix slurmdbd command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.