-
Linux作业管理系统pbs中的服务进程配置和启动文件
资源介绍
服务进程配置和启动文件
系统配置文件/etc/pbs.conf
#!/bin/sh
pbs_home=/var/spool/pbs 指定系统的pbs的设置的目录位置
pbs_exec=/usr/local 指定pbs可执行程序的目录位置
start_server=1
start_sched=1 当为1是表示守护进程启动,0为守护进程不启动
start_mom=1
系统启动脚本 /etc/init.d/openpbs
Server的系统启动脚本 /etc/init.d/pbs_server
Scheduler系统启动脚本 /etc/init.d/pbs_sched
Mom系统启动脚本 /etc/init.d/pbs_mom