diff --git a/pages/linux/sacctmgr.md b/pages/linux/sacctmgr.md new file mode 100644 index 0000000000..2a2fc90cb4 --- /dev/null +++ b/pages/linux/sacctmgr.md @@ -0,0 +1,20 @@ +# sacctmgr + +> View, setup, and manage Slurm accounts. +> More information: . + +- Show current configuration: + +`sacctmgr show configuration` + +- Add a cluster to the slurm database: + +`sacctmgr add cluster {{cluster_name}}` + +- Add an account to the slurm database: + +`sacctmgr add account {{account_name}} cluster={{cluster_of_account}}` + +- Show details of user/association/cluster/account: + +`sacctmgr show {{user/association/cluster/account}}` diff --git a/pages/linux/sreport.md b/pages/linux/sreport.md new file mode 100644 index 0000000000..32713b79c5 --- /dev/null +++ b/pages/linux/sreport.md @@ -0,0 +1,16 @@ +# sreport + +> Generate reports on jobs, users, and clusters from accounting data. +> More information: . + +- Show pipe delimited cluster utilization data: + +`sreport --parsable cluster utilization` + +- Show number of jobs run: + +`sreport job sizes printjobcount` + +- Show users with highest cpu time use: + +`sreport user topuser`