since your intention seems to be just checking Slurm's behavior, I would recommend that you use front-end mode, where you can create dummy compute nodes on a single computer.
In your FAQ you have more detailed information, but basically you should configure your installation to work with this mode:
./configure --enable-front-end
And configure the nodes in slurm.conf
NodeName=test[1-100] NodeHostName=localhost
In this guide, they also explain how to run several real daemons in the same node by changing the ports, but this was not necessary for my testing purposes.
Good luck
source share