Comma works. Thanks!
From: Lachlan Musicman [mailto:data...@gmail.com] Sent: Tuesday, July 12, 2016 6:47 AM To: slurm-dev <slurm-dev@schedmd.com> Subject: [slurm-dev] Re: specifying compute nodes with arbitrary hostnames in configurator.html Regardless of what you put in, make sure that the end product (the text conf file) has somehting that looks like: NodeName=compute[01-02] CPUs=40 RealMemory=385000 Sockets=2 CoresPerSocket=10 ThreadsPerCore=2 State=UNKNOWN If I recall correctly, the NodeNames can be comma delim: NodeName=Alice,Bob,Charles CPUs=40 RealMemory=385000 Sockets=2 CoresPerSocket=10 ThreadsPerCore=2 State=UNKNOWN If that doesn't work (it should) you can put them all on separate lines: NodeName=Alice CPUs=40 RealMemory=385000 Sockets=2 CoresPerSocket=10 ThreadsPerCore=2 State=UNKNOWN NodeName=Bob CPUs=40 RealMemory=385000 Sockets=2 CoresPerSocket=10 ThreadsPerCore=2 State=UNKNOWN NodeName=Charles CPUs=40 RealMemory=385000 Sockets=2 CoresPerSocket=10 ThreadsPerCore=2 State=UNKNOWN cheers L. ------ The most dangerous phrase in the language is, "We've always done it this way." - Grace Hopper On 11 July 2016 at 23:49, Zhoujun Ma <t-...@microsoft.com<mailto:t-...@microsoft.com>> wrote: Hi all, I am creating my first Slurm cluster. I have 3 compute nodes, whose hostnames are Alice, Bob and Charles respectively. I am trying to use configurator.html to generate my slurm.conf. My question is how should I fill in the blank “NodeName: Compute nodes” in configurator.html? Thanks.