{"id":950,"date":"2020-11-09T15:00:27","date_gmt":"2020-11-09T14:00:27","guid":{"rendered":"https:\/\/itrop.ird.fr\/wordpress\/?page_id=950"},"modified":"2022-04-06T14:48:40","modified_gmt":"2022-04-06T12:48:40","slug":"trainings-2019-admin-hpc-module-2-installation-slurm-en","status":"publish","type":"page","link":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/","title":{"rendered":"Trainings 2019 &#8211; Admin HPC &#8211; module 2 &#8211; installation slurm &#8211; EN"},"content":{"rendered":"<h2>Slurm installation<\/h2>\n<table>\n<thead>\n<tr>\n<th style=\"text-align: left;\">Description<\/th>\n<th style=\"text-align: left;\">Installation of Slurm on centos 7<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"text-align: left;\">Related-course materials<\/td>\n<td style=\"text-align: left;\"><a href=\"https:\/\/itrop.ird.fr\/wordpress\/index.php\/trainings-2019-admin-hpc-module-2\/\">HPC Administration Module2<\/a><\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\">Authors<\/td>\n<td style=\"text-align: left;\">Ndomassi TANDO (ndomassi.tando@ird.fr)<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\">Creation Date<\/td>\n<td style=\"text-align: left;\">23\/09\/2019<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: left;\">Last Modified Date<\/td>\n<td style=\"text-align: left;\">23\/09\/2019<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr \/>\n<h3>Summary<\/h3>\n<p><!-- TOC depthFrom:2 depthTo:2 withLinks:1 updateOnSave:1 orderedList:0 --><\/p>\n<ul>\n<li><a href=\"#part-1\">Definition<\/a><\/li>\n<li><a href=\"#part-2\">Authentication and databases<\/a><\/li>\n<li><a href=\"#part-3\">Slurm installation<\/a><\/li>\n<li><a href=\"#part-4\">Configure usage limit<\/a><\/li>\n<li><a href=\"#links\">Links<\/a><\/li>\n<li><a href=\"#license\">License<\/a><\/li>\n<\/ul>\n<hr \/>\n<p><a name=\"part-1\"><\/a><\/p>\n<h2>Definition<\/h2>\n<p>Slurm is an open source, fault-tolerant, and highly scalable cluster management and job scheduling system for large and small Linux clusters.<\/p>\n<p><a href=\"https:\/\/slurm.schedmd.com\/\">https:\/\/slurm.schedmd.com\/<\/a><\/p>\n<hr \/>\n<p><a name=\"part-2\"><\/a><\/p>\n<h2>Authentication and databases:<\/h2>\n<h3>Create the user for munge and slurm:<\/h3>\n<p>Slurm and Munge require consistent UID and GID across every node in the cluster.<br \/>\nFor all the nodes, before you install Slurm or Munge:<\/p>\n<pre><code>$ export MUNGEUSER=1001\n$ groupadd -g $MUNGEUSER munge\n$ useradd  -m -c &quot;MUNGE Uid &#039;N&#039; Gid Emporium&quot; -d \/var\/lib\/munge -u $MUNGEUSER -g munge  -s \/sbin\/nologin munge\n$ export SLURMUSER=1002\n$ groupadd -g $SLURMUSER slurm\n$ useradd  -m -c &quot;SLURM workload manager&quot; -d \/var\/lib\/slurm -u $SLURMUSER -g slurm  -s \/bin\/bash slurm<\/code><\/pre>\n<h3>Munge Installation for authentication:<\/h3>\n<pre><code>$ yum install munge munge-libs munge-devel -y<\/code><\/pre>\n<h4>Create a munge authentication key:<\/h4>\n<pre><code>$ \/usr\/sbin\/create-munge-key<\/code><\/pre>\n<h4>Copy  the munge authentication key on every node:<\/h4>\n<pre><code>$ cp \/etc\/munge\/munge.key \/home\n$ cexec cp \/home\/munge.key \/etc\/munge <\/code><\/pre>\n<h4>Set the rights:<\/h4>\n<pre><code>$ chown -R munge: \/etc\/munge\/ \/var\/log\/munge\/ \/var\/lib\/munge\/ \/run\/munge\/\n$ chmod 0700 \/etc\/munge\/ \/var\/log\/munge\/ \/var\/lib\/munge\/ \/run\/munge\/\n$ cexec chown -R munge: \/etc\/munge\/ \/var\/log\/munge\/ \/var\/lib\/munge\/ \/run\/munge\/\n$ cexec chmod 0700 \/etc\/munge\/ \/var\/log\/munge\/ \/var\/lib\/munge\/ \/run\/munge\/<\/code><\/pre>\n<h4>Enable and Start the munge service with:<\/h4>\n<pre><code>$ systemctl enable munge\n$ systemctl start munge\n$ cexec systemctl enable munge\n$ cexec systemctl start munge<\/code><\/pre>\n<h4>Test munge from the master node:<\/h4>\n<pre><code>$ munge -n | unmunge\n$ munge -n | ssh &lt;somehost_in_cluster&gt; unmunge<\/code><\/pre>\n<h3>Mariadb installation and configuration<\/h3>\n<h4>Install mariadb with the following command:<\/h4>\n<pre><code>$ yum install mariadb-server -y<\/code><\/pre>\n<h4>Activate and start the mariadb service:<\/h4>\n<pre><code>$ systemctl start mariadb\nsystemctl enable mariadb<\/code><\/pre>\n<h4>secure the installation:<\/h4>\n<p>Launch the following command to set up the root password an secure mariadb:<\/p>\n<pre><code>$ mysql_secure_installation{<\/code><\/pre>\n<h4>Modify the innodb configuration:<\/h4>\n<p>Setting innodb_lock_wait_timeout,innodb_log_file_size and innodb_buffer_pool_size to larger values than the default is recommended.<\/p>\n<p>To do that, create a the file <code>\/etc\/my.cnf.d\/innodb.cnf<\/code> with the following lines:<\/p>\n<pre><code>[mysqld]\n innodb_buffer_pool_size=1024M\n innodb_log_file_size=64M\n innodb_lock_wait_timeout=900<\/code><\/pre>\n<p>To implement this change you have to shut down the database and move\/remove logfiles:<\/p>\n<pre><code>$ systemctl stop mariadb\n mv \/var\/lib\/mysql\/ib_logfile? \/tmp\/\n systemctl start mariadb<\/code><\/pre>\n<hr \/>\n<p><a name=\"part-3\"><\/a><\/p>\n<h2>Slurm installation:<\/h2>\n<h3>Install the following prerequisites:<\/h3>\n<pre><code>$ yum install openssl openssl-devel pam-devel rpmbuild numactl numactl-devel hwloc hwloc-devel lua lua-devel readline-devel rrdtool-devel ncurses-devel man2html libibmad libibumad -y<\/code><\/pre>\n<h3>Retrieve the tarball<\/h3>\n<pre><code>$ wget https:\/\/download.schedmd.com\/slurm\/slurm-19.05.0.tar.bz2<\/code><\/pre>\n<h3>Create the RPMs:<\/h3>\n<pre><code>$ rpmbuild -ta slurm-19.05.0.tar.bz2<\/code><\/pre>\n<p>RPMs are located in \/root\/rpmbuild\/RPMS\/x86_64\/<\/p>\n<h3>Install slurm on master and nodes<\/h3>\n<p>In the RPMs'folder, launch the following command:<\/p>\n<pre><code>$ yum --nogpgcheck localinstall slurm-*<\/code><\/pre>\n<h3>Create and configure the slurm_acct_db database:<\/h3>\n<pre><code>$ mysql -u root -p\n mysql&gt; grant all on slurm_acct_db.* TO &#039;slurm&#039;@&#039;localhost&#039; identified by &#039;some_pass&#039; with grant option;\n mysql&gt; create database slurm_acct_db;<\/code><\/pre>\n<h3>Configure the slurm db backend:<\/h3>\n<p>Modify the <code>\/etc\/slurm\/slurmdbd.conf<\/code> with the following parameters:<\/p>\n<pre><code>AuthType=auth\/munge\n  DbdAddr=192.168.1.250\n  DbdHost=master0\n  SlurmUser=slurm\n  DebugLevel=4\n  LogFile=\/var\/log\/slurm\/slurmdbd.log\n  PidFile=\/var\/run\/slurmdbd.pid\n  StorageType=accounting_storage\/mysql\n  StorageHost=master0\n  StoragePass=some_pass\n  StorageUser=slurm\n  StorageLoc=slurm_acct_db<\/code><\/pre>\n<p>Then enable and start the slurmdbd service<\/p>\n<pre><code>$ systemctl start slurmdbd\n$ systemctl enable slurmdbd\n$ systemctl status slurmdbd<\/code><\/pre>\n<p>This will populate the slurm_acct_db with tables<\/p>\n<h3>Configuration file \/etc\/slurm\/slurm.conf:<\/h3>\n<p>using the command <code>lscpu<\/code> on each node to get processors' informations.<\/p>\n<p>Visit <a href=\"http:\/\/slurm.schedmd.com\/configurator.easy.html\">http:\/\/slurm.schedmd.com\/configurator.easy.html<\/a> to make a configuration file for Slurm.<\/p>\n<p>Modify the following parameters in <code>\/etc\/slurm\/slurm.conf<\/code> to match with your cluster:<\/p>\n<pre><code>ClusterName=IRD\n ControlMachine=master0\n ControlAddr=192.168.1.250\n SlurmUser=slurm\n AuthType=auth\/munge\n StateSaveLocation=\/var\/spool\/slurmd\n SlurmdSpoolDir=\/var\/spool\/slurmd\n SlurmctldLogFile=\/var\/log\/slurm\/slurmctld.log\n SlurmdDebug=3\n SlurmdLogFile=\/var\/log\/slurm\/slurmd.log\n AccountingStorageHost=master0\n AccountingStoragePass=3devslu!!\n AccountingStorageUser=slurm\n NodeName=node21 CPUs=16 Sockets=4 RealMemory=32004 CoresPerSocket=4 ThreadsPerCore=1 State=UNKNOWN\n PartitionName=r900 Nodes=node21 Default=YES MaxTime=INFINITE State=UP<\/code><\/pre>\n<p>Now that the server node has the slurm.conf and slurmdbd.conf correctly filled, we need to send these filse to the other compute nodes.<\/p>\n<pre><code>$ cp \/etc\/slurm\/slurm.conf \/home\n$ cp \/etc\/slurm\/slurmdbd.conf \/home\n$ cexec cp \/home\/slurm.conf \/etc\/slurm\n$ cexec cp \/home\/slurmdbd.conf \/etc\/slurm<\/code><\/pre>\n<h3>Create the folders to host  the logs<\/h3>\n<h4>On the master node:<\/h4>\n<pre><code>$ mkdir \/var\/spool\/slurmctld\n$ chown slurm:slurm \/var\/spool\/slurmctld\n$ chmod 755 \/var\/spool\/slurmctld\n$ mkdir  \/var\/log\/slurm\n$ touch \/var\/log\/slurm\/slurmctld.log\n$ touch \/var\/log\/slurm\/slurm_jobacct.log \/var\/log\/slurm\/slurm_jobcomp.log\n$ chown -R slurm:slurm \/var\/log\/slurm\/<\/code><\/pre>\n<p>On the compute nodes:<\/p>\n<pre><code>$ mkdir \/var\/spool\/slurmd\n$ chown slurm: \/var\/spool\/slurmd\n$ chmod 755 \/var\/spool\/slurmd\n$ mkdir \/var\/log\/slurm\/\n$ touch \/var\/log\/slurm\/slurmd.log\n$ chown -R slurm:slurm \/var\/log\/slurm\/slurmd.log<\/code><\/pre>\n<h4>test the configuration:<\/h4>\n<pre><code>$ slurmd -C<\/code><\/pre>\n<p>You should get something like:<\/p>\n<pre><code>NodeName=master0 CPUs=16 Boards=1 SocketsPerBoard=2 CoresPerSocket=4 ThreadsPerCore=2 RealMemory=23938 UpTime=22-10:03:46<\/code><\/pre>\n<h4>Launch the slurmd service on the compute nodes:<\/h4>\n<pre><code>$ systemctl enable slurmd.service\n$ systemctl start slurmd.service\n$ systemctl status slurmd.service<\/code><\/pre>\n<h4>Launch the slurmctld service on the master node:<\/h4>\n<pre><code>$ systemctl enable slurmctld.service\n$ systemctl start slurmctld.service\n$ systemctl status slurmctld.service<\/code><\/pre>\n<h4>Change the state of a node from down to idle<\/h4>\n<pre><code>$ scontrol update NodeName=nodeX State=RESUME<\/code><\/pre>\n<p>Where nodeX is  the name of your node<\/p>\n<hr \/>\n<p><a name=\"part-4\"><\/a><\/p>\n<h2>Configure usage limits<\/h2>\n<h3>Modify the \/etc\/slurm\/slurm.conf file<\/h3>\n<p>Modify the <code>AccountingStorageEnforce<\/code>parameter with:<\/p>\n<pre><code>AccountingStorageEnforce=limits<\/code><\/pre>\n<p>Copy the modified file to the several nodes<\/p>\n<p>Restart the slurmctld service to validate the modifications:<\/p>\n<pre><code>$ systemctl restart slurmctld<\/code><\/pre>\n<h3>Create a cluster:<\/h3>\n<p>The cluster is the name we want for your slurm cluster.<\/p>\n<p>It  is defined in the <code>\/etc\/slurm\/slurm.conf<\/code> file with the line <\/p>\n<pre><code>ClusterName=ird<\/code><\/pre>\n<p>To set usage limitations for your users, you  first have to create an accounting cluster with the command:<\/p>\n<pre><code>$sacctmgr add cluster ird<\/code><\/pre>\n<h3>Create an accounting account<\/h3>\n<p>An accounting account is a group under slurm that allows the administrator to manage the users rights to use slurm.<\/p>\n<p>Example: you can create a account to group the bioinfo teams members     <\/p>\n<pre><code>$ sacctmgr add account bioinfo Description=&quot;bioinfo member&quot;<\/code><\/pre>\n<p>You can create a account to  group the peaople allow to use the gpu partition<\/p>\n<pre><code>$ sacctmgr add account gpu_group Description=&quot;Members can use the gpu partition&quot;<\/code><\/pre>\n<h3>Create a user account<\/h3>\n<p>You have to create slurm user to make them be able to launch slurm jobs.<\/p>\n<pre><code>$ sacctmgr create user name=xxx DefaultAccount=yyy<\/code><\/pre>\n<h3>Modify a user account to add it to another accounting account:<\/h3>\n<pre><code>$ sacctmgr add user xxx Account=zzzz<\/code><\/pre>\n<h3>Modify a node definition<\/h3>\n<h4>Add the amount of \/scratch partition<\/h4>\n<p>In the file <code>\/etc\/slurm\/slurm.conf<\/code><\/p>\n<h5>Modify the TmpFS file system<\/h5>\n<pre><code>$TmpFS=\/scratch<\/code><\/pre>\n<h5>Add the TmpDisk value for \/scratch<\/h5>\n<p>The TmpDisk is the size of the scratch in MB , you have to add in the line starting with  NodeName <\/p>\n<p>For example for a node with a 3TB disk:<\/p>\n<pre><code>$ NodeName=node21 CPUs=16 Sockets=4 RealMemory=32004 TmpDisk=3000 CoresPerSocket=4 ThreadsPerCore=1 State=UNKNOWN<\/code><\/pre>\n<h3>Modify a partition definition<\/h3>\n<p>You have to modify the line starting with PartitionName in the file <code>\/etc\/slurm\/slurm.conf<\/code> .<\/p>\n<p>Several options are available according to what you want <\/p>\n<h4>Add  a time limit for running jobs (MaxTime)<\/h4>\n<p>A limitation time on partitions allows slurm to manage priorities between jobs on the same node.<\/p>\n<p>You have to add it in the PartitionName line with the amount of time  in minutes.<\/p>\n<p>For example a partition with a 1 day max time the partition definition  will be:<\/p>\n<pre><code>PartitionName=short Nodes=node21,node[12-15]  MaxTime=1440 State=UP<\/code><\/pre>\n<h4>Add  a Max Memory per CPU (MaxMemPerCPU)<\/h4>\n<p>As memory is a consumable resource  MaxMemPerCPU serves not only to protect the node\u2019s memory but will also automatically increase a job\u2019s core count on submission where possible<\/p>\n<p>You have to add it in the PartitionName line with the amount of memory in Mb.<\/p>\n<p>This is normally set to MaxMem\/NumCores<\/p>\n<p>for example  2GB\/CPU, the partition definition  will be<\/p>\n<pre><code>PartitionName=normal Nodes=node21,node[12-15] MaxMemPerCPU=2000 MaxTime=4320 State=UP<\/code><\/pre>\n<hr \/>\n<h3>Links<\/h3>\n<p><a name=\"links\"><\/a><\/p>\n<ul>\n<li>Related courses : <a href=\"https:\/\/itrop.ird.fr\/wordpress\/index.php\/trainings-2019-hpc\/\">HPC Trainings<\/a><\/li>\n<\/ul>\n<hr \/>\n<h3>License<\/h3>\n<p><a name=\"license\"><\/a><\/p>\n<div>\nThe resource material is licensed under the Creative Commons Attribution 4.0 International License (<a href=\"http:\/\/creativecommons.org\/licenses\/by-nc-sa\/4.0\/\">here<\/a>).<br \/>\n<center><img decoding=\"async\" width=\"25%\" class=\"img-responsive\" src=\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\"\/><br \/>\n<\/center>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Slurm installation Description Installation of Slurm on centos 7 Related-course materials HPC Administration Module2 Authors Ndomassi TANDO (ndomassi.tando@ird.fr) Creation Date&hellip; <br \/> <a class=\"read-more\" href=\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/\">Lire la suite<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":928,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":""},"class_list":["post-950","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Trainings 2019 - Admin HPC - module 2 - installation slurm - EN - itrop<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Trainings 2019 - Admin HPC - module 2 - installation slurm - EN - itrop\" \/>\n<meta property=\"og:description\" content=\"Slurm installation Description Installation of Slurm on centos 7 Related-course materials HPC Administration Module2 Authors Ndomassi TANDO (ndomassi.tando@ird.fr) Creation Date&hellip; Lire la suite\" \/>\n<meta property=\"og:url\" content=\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/\" \/>\n<meta property=\"og:site_name\" content=\"itrop\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-06T12:48:40+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@ItropBioinfo\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/\",\"url\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/\",\"name\":\"Trainings 2019 - Admin HPC - module 2 - installation slurm - EN - itrop\",\"isPartOf\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\",\"datePublished\":\"2020-11-09T14:00:27+00:00\",\"dateModified\":\"2022-04-06T12:48:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#primaryimage\",\"url\":\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\",\"contentUrl\":\"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\/\/bioinfo.ird.fr\/index.php\/en\/front-page-2\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Trainings &#8211; FR\",\"item\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Trainings 2019 &#8211; Admin HPC &#8211; module 2\",\"item\":\"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Trainings 2019 &#8211; Admin HPC &#8211; module 2 &#8211; installation slurm &#8211; EN\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/bioinfo.ird.fr\/#website\",\"url\":\"https:\/\/bioinfo.ird.fr\/\",\"name\":\"itrop\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/bioinfo.ird.fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/bioinfo.ird.fr\/#organization\",\"name\":\"i-Trop\",\"url\":\"https:\/\/bioinfo.ird.fr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png\",\"contentUrl\":\"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png\",\"width\":1356,\"height\":1356,\"caption\":\"i-Trop\"},\"image\":{\"@id\":\"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/ItropBioinfo\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Trainings 2019 - Admin HPC - module 2 - installation slurm - EN - itrop","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/","og_locale":"fr_FR","og_type":"article","og_title":"Trainings 2019 - Admin HPC - module 2 - installation slurm - EN - itrop","og_description":"Slurm installation Description Installation of Slurm on centos 7 Related-course materials HPC Administration Module2 Authors Ndomassi TANDO (ndomassi.tando@ird.fr) Creation Date&hellip; Lire la suite","og_url":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/","og_site_name":"itrop","article_modified_time":"2022-04-06T12:48:40+00:00","og_image":[{"url":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@ItropBioinfo","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/","url":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/","name":"Trainings 2019 - Admin HPC - module 2 - installation slurm - EN - itrop","isPartOf":{"@id":"https:\/\/bioinfo.ird.fr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#primaryimage"},"image":{"@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#primaryimage"},"thumbnailUrl":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png","datePublished":"2020-11-09T14:00:27+00:00","dateModified":"2022-04-06T12:48:40+00:00","breadcrumb":{"@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#primaryimage","url":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png","contentUrl":"http:\/\/creativecommons.org.nz\/wp-content\/uploads\/2012\/05\/by-nc-sa1.png"},{"@type":"BreadcrumbList","@id":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/trainings-2019-admin-hpc-module-2-installation-slurm-en\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/bioinfo.ird.fr\/index.php\/en\/front-page-2\/"},{"@type":"ListItem","position":2,"name":"Trainings &#8211; FR","item":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/"},{"@type":"ListItem","position":3,"name":"Trainings 2019 &#8211; Admin HPC &#8211; module 2","item":"https:\/\/bioinfo.ird.fr\/index.php\/trainings-fr\/trainings-2019-admin-hpc-module-2\/"},{"@type":"ListItem","position":4,"name":"Trainings 2019 &#8211; Admin HPC &#8211; module 2 &#8211; installation slurm &#8211; EN"}]},{"@type":"WebSite","@id":"https:\/\/bioinfo.ird.fr\/#website","url":"https:\/\/bioinfo.ird.fr\/","name":"itrop","description":"","publisher":{"@id":"https:\/\/bioinfo.ird.fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/bioinfo.ird.fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/bioinfo.ird.fr\/#organization","name":"i-Trop","url":"https:\/\/bioinfo.ird.fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/","url":"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png","contentUrl":"https:\/\/bioinfo.ird.fr\/wp-content\/uploads\/2021\/10\/i-tropTwt5.png","width":1356,"height":1356,"caption":"i-Trop"},"image":{"@id":"https:\/\/bioinfo.ird.fr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/ItropBioinfo"]}]}},"_links":{"self":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/950","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/comments?post=950"}],"version-history":[{"count":1,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/950\/revisions"}],"predecessor-version":[{"id":951,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/950\/revisions\/951"}],"up":[{"embeddable":true,"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/pages\/928"}],"wp:attachment":[{"href":"https:\/\/bioinfo.ird.fr\/index.php\/wp-json\/wp\/v2\/media?parent=950"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}