我只是想知道是否有一些命令告诉我是否可以使用sge访问群集上的某个队列。感谢:)
答案 0 :(得分:2)
使用qstat的-U
选项。从qstat(1)的手册页:
-U user,... Displays status information with respect to queues to which the specified users have access. Status informa- tion for jobs is displayed either for those which exe- cute in one of the selected queues or which are pending and might get scheduled to those queues in principle.
然后你可以做
$ qstat -U yourusername -g c
查看您有权访问的所有队列的列表,或
$ qstat -U yourusername -g c -q yourqueuename
确定您是否可以访问特定队列(如果您没有访问权限,列表将为空)。