HTCondor安装
192.168.30.253 | master |
- cd /etc/yum.repos.d
wget http://research.cs.wisc.edu/htcondor/yum/repo.d/htcondor-stable-rhel6.repo
- wget http://research.cs.wisc.edu/htcondor/yum/RPM-GPG-KEY-HTCondor
- rpm --import RPM-GPG-KEY-HTCondor
- yum install condor.x86_64
- master:
- ######################################################################
- ##
- ## condor_config
- ##
- ## This is the global configuration file for condor. This is where
- ## you define where the local config file is. Any settings
- ## made here may potentially be overridden in the local configuration
- ## file. KEEP THAT IN MIND! To double-check that a variable is
- ## getting set from the configuration file that you expect, use
- ## condor_config_val -v <variable name>
- ##
- ## condor_config.annotated is a more detailed sample config file
- ##
- ## Unless otherwise specified, settings that are commented out show
- ## the defaults that are used if you don't define a value. Settings
- ## that are defined here MUST BE DEFINED since they have no default
- ## value.
- ##
- ######################################################################
- ## Where have you installed the bin, sbin and lib condor directories?
- RELEASE_DIR = /usr
- ## Where is the local condor directory for each host? This is where the local config file(s), logs and
- ## spool/execute directories are located. this is the default for Linux and Unix systems.
- LOCAL_DIR = /var
- ## Where is the machine-specific local config file for each host?
- LOCAL_CONFIG_FILE = /etc/condor/condor_config.local
- ## If your configuration is on a shared file system, then this might be a better default
- #LOCAL_CONFIG_FILE = $(RELEASE_DIR)/etc/$(HOSTNAME).local
- ## If the local config file is not present, is it an error? (WARNING: This is a potential security issue.)
- REQUIRE_LOCAL_CONFIG_FILE = false
- ## The normal way to do configuration with RPMs is to read all of the
- ## files in a given directory that don't match a regex as configuration files.
- ## Config files are read in lexicographic order.
- LOCAL_CONFIG_DIR = /etc/condor/config.d
- #LOCAL_CONFIG_DIR_EXCLUDE_REGEXP = ^((\..*)|(.*~)|(#.*)|(.*\.rpmsave)|(.*\.rpmnew))$
- ## Use a host-based security policy. By default CONDOR_HOST and the local machine will be allowed
- use SECURITY : HOST_BASED
- ## To expand your condor pool beyond a single host, set ALLOW_WRITE to match all of the hosts
- #ALLOW_WRITE = *.cs.wisc.edu
- ALLOW_WRITE = *
- ## FLOCK_FROM defines the machines that grant access to your pool via flocking. (i.e. these machines can join your pool).
- #FLOCK_FROM =
- ## FLOCK_TO defines the central managers that your schedd will advertise itself to (i.e. these pools will give matches to your schedd).
- #FLOCK_TO = condor.cs.wisc.edu, cm.example.edu
- ##--------------------------------------------------------------------
- ## Values set by the rpm patch script:
- ##--------------------------------------------------------------------
- ## For Unix machines, the path and file name of the file containing
- ## the pool password for password authentication.
- #SEC_PASSWORD_FILE = $(LOCAL_DIR)/lib/condor/pool_password
- ## Pathnames
- RUN = $(LOCAL_DIR)/run/condor
- LOG = $(LOCAL_DIR)/log/condor
- LOCK = $(LOCAL_DIR)/lock/condor
- SPOOL = $(LOCAL_DIR)/lib/condor/spool
- EXECUTE = $(LOCAL_DIR)/lib/condor/execute
- BIN = $(RELEASE_DIR)/bin
- LIB = $(RELEASE_DIR)/lib64/condor
- INCLUDE = $(RELEASE_DIR)/include/condor
- SBIN = $(RELEASE_DIR)/sbin
- LIBEXEC = $(RELEASE_DIR)/libexec/condor
- SHARE = $(RELEASE_DIR)/share/condor
- PROCD_ADDRESS = $(RUN)/procd_pipe
- JAVA_CLASSPATH_DEFAULT = $(SHARE) $(SHARE)/scimark2lib.jar .
- ## What machine is your central manager?
- CONDOR_HOST = $(FULL_HOSTNAME)
- #add by similarface
- COLLECTOR_HOST = $(CONDOR_HOST):9618
- ## This macro determines what daemons the condor_master will start and keep its watchful eyes on.
- ## The list is a comma or space separated list of subsystem names
- DAEMON_LIST = COLLECTOR, MASTER, NEGOTIATOR, SCHEDD, STARTD
work01:
- [root@slave1 ~]# grep -v "^$\|^#" /etc/condor/condor_config
- RELEASE_DIR = /usr
- LOCAL_DIR = /var
- LOCAL_CONFIG_FILE = /etc/condor/condor_config.local
- REQUIRE_LOCAL_CONFIG_FILE = false
- LOCAL_CONFIG_DIR = /etc/condor/config.d
- use SECURITY : HOST_BASED
- ALLOW_WRITE = *
- RUN = $(LOCAL_DIR)/run/condor
- LOG = $(LOCAL_DIR)/log/condor
- LOCK = $(LOCAL_DIR)/lock/condor
- SPOOL = $(LOCAL_DIR)/lib/condor/spool
- EXECUTE = $(LOCAL_DIR)/lib/condor/execute
- BIN = $(RELEASE_DIR)/bin
- LIB = $(RELEASE_DIR)/lib64/condor
- INCLUDE = $(RELEASE_DIR)/include/condor
- SBIN = $(RELEASE_DIR)/sbin
- LIBEXEC = $(RELEASE_DIR)/libexec/condor
- SHARE = $(RELEASE_DIR)/share/condor
- PROCD_ADDRESS = $(RUN)/procd_pipe
- JAVA_CLASSPATH_DEFAULT = $(SHARE) $(SHARE)/scimark2lib.jar .
- CONDOR_HOST = master
- DAEMON_LIST = MASTER, STARTD
work2:
- [root@slave2 ~]# grep -v "^$\|^#" /etc/condor/condor_config
- RELEASE_DIR = /usr
- LOCAL_DIR = /var
- LOCAL_CONFIG_FILE = /etc/condor/condor_config.local
- REQUIRE_LOCAL_CONFIG_FILE = false
- LOCAL_CONFIG_DIR = /etc/condor/config.d
- use SECURITY : HOST_BASED
- ALLOW_WRITE = *
- RUN = $(LOCAL_DIR)/run/condor
- LOG = $(LOCAL_DIR)/log/condor
- LOCK = $(LOCAL_DIR)/lock/condor
- SPOOL = $(LOCAL_DIR)/lib/condor/spool
- EXECUTE = $(LOCAL_DIR)/lib/condor/execute
- BIN = $(RELEASE_DIR)/bin
- LIB = $(RELEASE_DIR)/lib64/condor
- INCLUDE = $(RELEASE_DIR)/include/condor
- SBIN = $(RELEASE_DIR)/sbin
- LIBEXEC = $(RELEASE_DIR)/libexec/condor
- SHARE = $(RELEASE_DIR)/share/condor
- PROCD_ADDRESS = $(RUN)/procd_pipe
- JAVA_CLASSPATH_DEFAULT = $(SHARE) $(SHARE)/scimark2lib.jar .
- CONDOR_HOST = master
- DAEMON_LIST = MASTER, STARTD
HTCondor安装的更多相关文章
- 高通量计算框架HTCondor(五)——分布计算
目录 1. 正文 1.1. 任务描述文件 1.2. 提交任务 1.3. 返回结果 2. 相关 1. 正文 1.1. 任务描述文件 前文提到过,HTCondor是通过condor_submit命令将提交 ...
- 高通量计算框架HTCondor(三)——使用命令
目录 1. 目录 2. 进程 3. 命令 3.1. condor_q 3.2. condor_status 3.3. conodr_submit 3.4. conodr_rm 4. 相关 1. 目录 ...
- 高通量计算框架HTCondor(二)——环境配置
目录 1. 概述 2. 安装 3. 结果 4. 相关 1. 概述 HTCondor是开源跨平台的分布式计算框架,在其官网上直接提供了源代码和Windows.Linux以及MacOS的安装包.因为平台限 ...
- docker——容器安装tomcat
写在前面: 继续docker的学习,学习了docker的基本常用命令之后,我在docker上安装jdk,tomcat两个基本的java web工具,这里对操作流程记录一下. 软件准备: 1.jdk-7 ...
- 网络原因导致 npm 软件包 node-sass / gulp-sass 安装失败的处理办法
如果你正在构建一个基于 gulp 的前端自动化开发环境,那么极有可能会用到 gulp-sass ,由于网络原因你可能会安装失败,因为安装过程中部分细节会到亚马逊云服务器上获取文件.本文主要讨论在不变更 ...
- Sublime Text3安装JsHint
介绍 Sublime Text3使用jshint依赖Nodejs,SublimeLinter和Sublimelinter-jshint. NodeJs的安装省略. 安装SublimeLinter Su ...
- Fabio 安装和简单使用
Fabio(Go 语言):https://github.com/eBay/fabio Fabio 是一个快速.现代.zero-conf 负载均衡 HTTP(S) 路由器,用于部署 Consul 管理的 ...
- gentoo 安装
加载完光驱后 1进行ping命令查看网络是否通畅 2设置硬盘的标识为GPT(主要用于64位且启动模式为UEFI,还有一个是MBR,主要用于32位且启动模式为bois) parted -a optima ...
- Linux平台 Oracle 10gR2(10.2.0.5)RAC安装 Part3:db安装和升级
Linux平台 Oracle 10gR2(10.2.0.5)RAC安装 Part3:db安装和升级 环境:OEL 5.7 + Oracle 10.2.0.5 RAC 5.安装Database软件 5. ...
随机推荐
- [osx] android studio下修改avd的hosts文件
1. 启动avd 安装/启动avd就不说啦,可以直接在android studio里面操作的 2. 进入adb目录 当然是打开终端来敲命令啦. cd /Users/birdylee/Library/A ...
- EntityFramework Core技术线路(EF7已经更名为EF Core,并于2016年6月底发布)
官方文档英文地址:https://github.com/aspnet/EntityFramework/wiki/Roadmap 历经延期和更名,新版本的实体框架终于要和大家见面了,虽然还有点害羞.请大 ...
- hsql数据库使用详解(入门)及快速使用
一.简介: hsql数据库是一款纯Java编写的免费数据库,许可是BSD-style的协议,如果你是使用Java编程的话,不凡考虑一下使用它,相对其 他数据库来说,其体积小,才563kb.仅一个hsq ...
- Samba快速配置
Samba是linux,unix,windows之间进行交互操作的软件组件,Sanma是基于GPL协议的自由开源软件. 快速配置samba文件服务器 1.关闭防火墙和SELinux [root@cen ...
- Best Part
- node上截取图片工具 images(node-images)
我们经常会遇到服务器上传的图片进行裁剪或者增加logo等等一些操作,在node平台上该如何实现呢? 看到大家都在使用"gm"这个工具,功能很强大,但是在Windows平台上简直就是 ...
- QT 网络编程
#include "networkinformation.h" #include "ui_networkinformation.h" networkinform ...
- python:字符串转换成字节的三种方式
str='zifuchuang' 第一种 b'zifuchuang'第二种bytes('zifuchuang',encoding='utf-8')第三种('zifuchuang').encode('u ...
- IOS CALayer的阴影属性
@property(nullable) CGColorRef shadowColor; /* The opacity of the shadow. Defaults to 0. Specifying ...
- angular中不同controller传值问题
利用angularJS中service单例模式的特性,服务(service)提供了一种能在应用的整个生命周期内保持数据的方式,能够在控制器之间进行通信,且能保证数据的一致性. 一般我们都会封装serv ...