我想在RHEL 6单机(32个CPU)上安装TORQUE。
我按照手册的每个说明进行安装,但最后我遇到了错误。以下是我遵循的所有步骤:
第一步,确保安装了libxml2-devel openssl-devel gcc gcc-c ++并保持最新:
# yum install libxml2-devel openssl-devel gcc gcc-c++
Setting up Install Process
Package libxml2-devel-2.7.6-14.el6.x86_64 already installed and latest version
Package openssl-devel-1.0.1e-16.el6_5.x86_64 already installed and latest version
Package gcc-4.4.7-4.el6.x86_64 already installed and latest version
Package gcc-c++-4.4.7-4.el6.x86_64 already installed and latest version
Nothing to do
然后我下载并解压缩了最后一个版本。然后我运行默认配置:
# ./configure
我运行make并make install:
# make
# make install
没有错误。
我将trqauthd守护程序配置为在系统启动时自动启动:
# cp contrib/init.d/trqauthd /etc/init.d/
# chkconfig --add trqauthd
# echo /usr/local/lib > /etc/ld.so.conf.d/torque.conf
# ldconfig
# service trqauthd start
Starting TORQUE Authorization Daemon: hostname: x6540
Currently no servers active. Default server will be listed as active server. Error 15133
Active server name: x6540 pbs_server port is: 15001
trqauthd daemonized - port 15005
[ OK ]
那里有第一个错误。
错误代码表示:
PBSE_SERVER_NOT_FOUND 15133 Could not connect to batch server
我继续安装直到最后,我设法启动了妈妈和服务器服务,但最终还是结束了:
# pbsnodes
localhost
state = down
np = 30
properties = CIS
ntype = cluster
mom_service_port = 15002
mom_manager_port = 15003
你能帮帮我吗?我可以为您提供所需的所有日志/信息。
谢谢!
答案 0 :(得分:1)
只需在客户端节点中以root身份运行 trqauthd 和 pbs_mom 。
答案 1 :(得分:0)
实际上这不是错误,它只是告诉您它无法找到任何活动的pbs_server进程。稍后当你启动pbs_server进程时,一切都会正常工作。
或者如果您先运行“service pbs_server start”,您将看不到错误。