rest_cherrypy】的更多相关文章

一.简介 A REST API FOR SALT 二.安装,配置 yum -y install salt-api rest_cherrypy: port: # disable_ssl: True ssl_crt: /etc/pki/tls/certs/localhost.crt ssl_key: /etc/pki/tls/certs/localhost.key external_auth: pam: tabops: #- .* - "@wheel" - "@runner&qu…
1. 安装salt-master和salt-minion 安装过程不再赘述,请参考http://docs.saltstack.com/en/latest/topics/installation/index.html 2. 安装salt-api,cherrypy 用来jenkins与salt通信 启用salt-api 在salt master的配置文件中添加 rest_cherrypy: port: 8010 host: master ipaddress disable_ssl: True ext…
saltstack官方提供了一个简单的web UI--halite.但是给出的安装配置方法实在没法实现,在网上找了几篇博客,见文章末尾的参考链接,可以用起来了.但是功能有点简单.这篇文章记录安装配置halite的过程. 1.从github克隆halite源码. git clone https://github.com/saltstack/halite 2.安装salt-api yum install salt-api 3.创建halite登录用户. useradd admin passwd ad…
Saltstack异步执行命令 salt执行命令有时候会有超时的问题,就是命令下发下去了,部分主机没有返回信息,这时候就很难判断命令或任务是否执行成功.因此,salt提供异步执行的功能,发出命令后立即返回一个jid.然后我们就可以根据这个jid来查询任务是否执行成功. 命令行实现异步 参数--async,返回job ID,根据job ID我们可以查询执行结果. salt --async '*' test.ping salt-run jobs.lookup_jid 2016111716315335…
saltstack web uiweb平台界面 saltapi项目主页:http://salt-api.readthedocs.org/en/latest/ halite 项目主页:https://github.com/saltstack/halite 官方文档:https://github.com/saltstack/ 搭建过程: cd /var/www wget https://github.com/saltstack/halite cd halite/halite ./genindex.p…
安装 # yum -y install salt-api 更改配置 vim /etc/salt/master 把默认的注释掉  我们这边默认配置文件目录是/srv/salt default_include: master.d/*.conf 创建目录 #cd /etc/salt# mkdir master.d/# cd master.d/ 创建两个文件和添加配置 # cat api.conf rest_cherrypy: host: 0.0.0.0 port: debug: true disabl…
OMS自动化运维平台部署 一.基础环境安装 yum -y install mariadb mariadb-devel mariadb-server wget epel-release python-devel gcc c++ make openssl openssl-devel passwd libffi libffi-devel pyOpenSSL git yum -y install salt-master salt-minion salt-api nginx wget https://bo…
1.Github配置 1.1 上传jenkinsfile到github https://github.com/zeyangli/ShareLibrary-jenkins.git 2.Jenkins配置 2.1 添加gitlab凭据 凭据管理-->凭据-->系统 -->添加凭据 2.2 ShareLibrary配置 系统管理-->系统设置-->Global Pipeline librarys 2.3 安装插件 saltstack ansicolor 3.发布配置 3.1 mas…
python3 安装api # 首先安装python3 .tgz cd Python- . ./configure make make install mv /usr/bin/python /usr/bin/python2 # 如果是软连接,可以直接删除 /usr/bin/python vim /usr/bin/yum # 修改Yum,使yum依然有效,yum依靠老版本的python #!/usr/bin/python 修改为#!/usr/bin/python2 # 修改完/usr/bin/yu…
0.客户端使用 linux:把linux的ragent文件夹拷贝到内网linux /opt目录下,运行初始化脚本 salt服务端:# @Master:"/opt/ragent/python/bin/python3 /opt/ragent/init.py master apipwd"  #apipwd 是saltapi的用户密码 salt客户端:# @Minion:"/opt/ragent/python/bin/python3 /opt/ragent/init.py minio…