侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

saltstack 快速安装配置

2022-06-11 星期六 / 0 评论 / 0 点赞 / 170 阅读 / 4359 字

saltstack_quickstart.sh##0.IntroductionSaltis:--aconfigurationmanagementsystem,capableofmaintainingr

.

saltstack_quickstart.sh## 0.IntroductionSalt is:-- a configuration management system, capable of maintaining remote nodes in defined states (for example, ensuring that specific packages are installed and specific services are running)-- a distributed remote execution system used to execute commands and query data on remote nodes, either individually or by arbitrary selection criteria## 1.Enabling EPEL on RHEL# RHEL 5:rpm -Uvh http://mirror.pnl.gov/epel/5/i386/epel-release-5-4.noarch.rpmwget http://copr.fedoraproject.org/coprs/saltstack/zeromq4/repo/epel-5/saltstack-zeromq4-epel-5.repo -O /etc/yum.repos.d/saltstack-zeromq4.repoyum install -y python-hashlib python26-zmq# RHEL 6:rpm -Uvh http://ftp.linux.ncsu.edu/pub/epel/6/i386/epel-release-6-8.noarch.rpmwget http://copr.fedoraproject.org/coprs/saltstack/zeromq4/repo/epel-6/saltstack-zeromq4-epel-6.repo -O /etc/yum.repos.d/saltstack-zeromq4.repo####### a script can be an option ########!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin exprot PATHfunction_salt_repo(){RHEL_VER=`uname -r | awk 'BEGIN {FS="."} {print $4}'`case $RHEL_VER in     "el5")        rpm -Uvh http://mirror.pnl.gov/epel/5/i386/epel-release-5-4.noarch.rpm        wget http://copr.fedoraproject.org/coprs/saltstack/zeromq4/repo/epel-5/saltstack-zeromq4-epel-5.repo -O /etc/yum.repos.d/saltstack-zeromq4.repo        yum install -y python-hashlib python26-zmq        ;;    "el6")        rpm -Uvh http://ftp.linux.ncsu.edu/pub/epel/6/i386/epel-release-6-8.noarch.rpm        wget http://copr.fedoraproject.org/coprs/saltstack/zeromq4/repo/epel-6/saltstack-zeromq4-epel-6.repo -O /etc/yum.repos.d/saltstack-zeromq4.repo        ;;    *)        echo "Only Support CentOS 5 || 6!"        ;;esac}####### end of file ######### 2. install # salt-masteryum install salt-masterchkconfig salt-master on/etc/init.d/salt-master start# salt-minionyum install salt-minion | yum --enablerepo=epel-testing install salt-minionchkconfig salt-minion on/etc/init.d/salt-minion start # ZEROMQ 4 http://copr.fedoraproject.org/coprs/saltstack/zeromq4/# RHEL/CentOS 5 Users Using COPR repos on RHEL/CentOS 5 requires that the # python-hashlib package be installed. Not having it present will result in # checksum errors because YUM will not be able to process the SHA256 # checksums used by COPR.## 3. configuration # master configurationvim /etc/salt/masterfile_roots:  base:    - /srv/salt    # minion configurationvim /etc/salt/minion - # master: salt+ master: 192.168.1.11- $id: + $id: 101# run salt in the foregroundsalt-master salt-minion # add key && test # salt-keysalt-key -Lsalt-key -Asalt-key -Dsalt-key -a 101 salt-key -d 101 # test salt /* test.ping -v
.

广告 广告

评论区