xuanhao 发表于 2018-7-31 10:47:19

saltstack的master以及minion的安装

# rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm  
# yum -y install salt-master
  
# /etc/init.d/salt-master start
  
Starting salt-master daemon:                               [确定]
  
# chkconfig --add salt-master
  
# chkconfig salt-master on
  
# chkconfig --list | grep salt-master
  
salt-master    0:关闭1:关闭2:启用3:启用4:启用5:启用6:关闭
  
# netstat -tunlp | grep python
  
tcp      0      0 0.0.0.0:4505                0.0.0.0:*                   LISTEN      2907/python2.6
  
tcp      0      0 0.0.0.0:4506                0.0.0.0:*                   LISTEN      2927/python2.6
页: [1]
查看完整版本: saltstack的master以及minion的安装