Centos7 安装单节点Torque PBS
Operation system: CentOS 7.3
Torque PBS: torque-6.1.1.1.tar
hostname: rfmlab
user name: cfd01
1. Installation
$ tar -zxvf torque-6.1.1.1.tar
$ yum install -y libxml2-devel openssl-devel gcc gcc-c++ boost-devel libtool
$ cd torque-6.1.1.1
$ ./configure --prefix=/usr/local/torque --with-scp --with-default-server=rfmlab
$ make
$ make install
$ make packages
## After above command, there may be a warning about "libtool --finish", run it
$ libtool --finish /...
2. Configure pbs service: pbs_server, pbs_sched, pbs_mom, trqauthd
$ cp contrib/init.d/{pbs_{server,sched,mom},trqauthd} /etc/init.d/
$ for i in pbs_server pbs_sched pbs_mom trqauthd; do chkconfig --add $i; chkconfig $i on; done
## Set environment variable
$ TORQUE=/usr/local/torque
$ echo "TORQUE=$TORQUE" >> /etc/profile
$ echo "export PATH=\$PATH:$TORQUE/bin:$TORQUE/sbin" >> /etc/profile
$ source /etc/profile
## Set the manager user for TORQUE, not root user
$ ./torque.setup cfd01
## Start the services of pbs_server, pbs_sched, pbs_mom and trqauthd
$ qterm
$ for i in pbs_server pbs_sched pbs_mom trqauthd; do service $i start; done
3. Assign computational node
## Add computing node "rfmlab", set the number of CPU
## Check the number of CPU by using the command “lscpu" or "nproc"
$ vi /var/spool/torque/server_priv/nodes
rfmlab np=40
$ vi /var/spool/torque/mom_priv/config
pbsserver rfmlab
logevent 255
4. Check the information of pbs
$ ps -e | grep pbs
$ for i in pbs_server pbs_sched pbs_mom trqauthd; do service $i restart; done
## Check the node information, if "state= free", then everything is fine
$ qnodes ## or use "pbsnodes -a"
4. Create default information of the queue
$ qmgr -c 'create queue rfmlab'
$ qmgr -c 'set queue rfmlab queue_type= execution'
$ qmgr -c 'set queue rfmlab started= true'
$ qmgr -c 'set queue rfmlab enabled= true'
$ qmgr -c 'set queue rfmlab resources_default.walltime= 240:00:00'
$ qmgr -c 'set queue rfmlab resources_default.nodes= 1'
$ qmgr -c 'set server default_queue= rfmlab'
5. Test
## Return back to the "cfd01" user
$ su cfd01
$ qstat
NOTES:
(1) ## start, stop and status of the pbs
$ for i in pbs_server pbs_sched pbs_mom trqauthd; do service $i start; done
$ for i in pbs_server pbs_sched pbs_mom trqauthd; do service $i stop; done
$ for i in pbs_server pbs_sched pbs_mom trqauthd; do service $i status; done
(2) Queue configuration
max_queuable: Specifies the maximum number of jobs allowed in the queue at any given time (includes idle, running, and blocked jobs).
$ qmgr -c "set queue batch max_queuable=20"
max_running: Specifies the maximum number of jobs in the queue allowed to run at any given time.
$ qmgr -c "set queue batch max_running=20"
max_user_queuable: Specifies the maximum number of jobs, per user, allowed in the queue at any given time (includes idle, running, and blocked jobs). Version 2.1.3 and greater.
$ qmgr -c "set queue batch max_user_queuable=20"
max_user_run: Specifies the maximum number of jobs, per user, in the queue allowed to run at any given time.
$ qmgr -c "set queue batch max_user_run=20"
priority: Specifies the priority value associated with the queue. Default value is "0".
$ priority: qmgr -c "set queue batch priority=20"
Website: http://docs.adaptivecomputing.com/torque/archive/3-0-2/4.1queueconfig.php
Centos7 安装单节点Torque PBS的更多相关文章
- Cloudera Manager安装之利用parcels方式安装单节点集群(包含最新稳定版本或指定版本的安装)(添加服务)(CentOS6.5)(四)
不多说,直接上干货! 福利 => 每天都推送 欢迎大家,关注微信扫码并加入我的4个微信公众号: 大数据躺过的坑 Java从入门到架构师 人工智能躺过的坑 ...
- (一)Hadoop1.2.1安装——单节点方式和单机伪分布方式
Hadoop1.2.1安装——单节点方式和单机伪分布方式 一. 需求部分 在Linux上安装Hadoop之前,需要先安装两个程序: 1)JDK 1.6(或更高版本).Hadoop是用Java编写的 ...
- centos7用docker安装单节点redis4.0.11
[root@localhost conf]# docker search redisINDEX NAME DESCRIPTION STARS OFFICIAL AUTOMATEDdocker.io d ...
- 全网最详细Apache Kylin1.5安装(单节点)和测试案例
转:http://blog.itpub.net/30089851/viewspace-2121221/ 微视频链接: Apache Kylin初识 1.版本(当前实验版本组合,版本一定要兼容 ...
- CentOS7 部署单节点 FastDFS
准备 环境 系统:CentOS7.5 软件即依赖 libfatscommon FastDFS分离出的一些公用函数包 FastDFS fastdfs-nginx-module FastDFS和nginx ...
- redis安装(单节点)
# tar -zxvf redis.tar.gz # cd redis 安装(使用 PREFIX 指定安装目录): # make PREFIX=/usr/local/redis install 安装完 ...
- @ZooKeeper注册中心安装(单节点)
1.下载zookeeper 下载地址:https://archive.apache.org/dist/zookeeper/,这里我们使用3.4.6版本. [winner-0715@localhost ...
- Mac OS用docker Desktop安装单节点kubernetes
方案: 安装方式:阿里云minikube,k8s官方minikube,kubeadm, docker Desktop中自带第k8s 安装环境:在linux虚拟机中安装k8s,在macos中安装k8s, ...
- Centos7安装Redis-单节点
1.安装 gcc 编译环境 由于 Redis 使用 C 语言开发,所以官网下载的源码需要进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装. [root@CentOS ~]# yu ...
随机推荐
- codevs 2488 绿豆蛙的归宿
2488 绿豆蛙的归宿 http://codevs.cn/problem/2488/ 时间限制: 1 s 空间限制: 64000 KB 题目等级 : 黄金 Gold 题目描述 Descrip ...
- jQuery经典面试题及答案精选[转]
这两天有个面试,把这些记在这里. 问题:jQuery的美元符号$有什么作用? 回答:其实美元符号$只是”jQuery”的别名,它是jQuery的选择器,如下代码: $(document).ready( ...
- 关于aspx.designer.cs的研究
.aspx文件..aspx.cs文件和.aspx.designer.cs的一些说明 .aspx文件:(页面)书写页面代码.存储的是页面design代码.只是放各个控件的代码,处理代码一般放在.cs文件 ...
- 【Codeforces752D】Santa Claus and a Palindrome [STL]
Santa Claus and a Palindrome Time Limit: 20 Sec Memory Limit: 512 MB Description 有k个串,串长都是n,每个串有一个a ...
- python3之json模块使用
1. json模块介绍 json是python自带的操作json的模块. python序列化为json时的数据类型转换关系: python格式 json格式 dict(复合类型) object lis ...
- Python ctypes中cast/py_object用法
class ctypes.py_object Represents the C PyObject * datatype. Calling this without an argument create ...
- Ajax请求数据与删除数据后刷新页面
1.ajax异步请求数据后填入模态框 请求数据的按钮(HTML) <a class="queryA" href="javascript:void(0)" ...
- Lucene7.2.1系列(二)luke使用及索引文档的基本操作
系列文章: Lucene系列(一)快速入门 Lucene系列(二)luke使用及索引文档的基本操作 Lucene系列(三)查询及高亮 luke入门 简介: github地址:https://githu ...
- 大端小端转换,le32_to_cpu 和cpu_to_le32
字节序 http://oss.org.cn/kernel-book/ldd3/ch11s04.html 小心不要假设字节序. PC 存储多字节值是低字节为先(小端为先, 因此是小端), 一些高级的平台 ...
- cpu几种架构区别
转自:http://smilejay.com/2012/07/intel-procssor-architecture/ (1)x86 (IA-32,i386,x86-32,x32) x86是指基于In ...