salt查看日志: salt --log-level=all "10.199.165.244" state.highstate 进入调试模式: salt-minion -l debug [DEBUG   ] Reading configuration from /etc/salt/minion [DEBUG   ] Configuration file path: /etc/salt/minion [INFO    ] Setting up the Salt Minion "…
首先得先安装epel的yum源: rpm -ivh http://mirrors.skyshe.cn/epel/6/x86_64/epel-release-6-8.noarch.rpm 1.SaltStack服务端(salt-master)安装: 1.安装Master: yum install salt-master -y 2.启动salt-master服务 service salt-master start 至此SaltStack的服务端就安装和启动完成了. 2.SaltStack客户端(sa…
在salt master端执行salt ‘*’ test.ping时,某一节点出现如下报错:Minion did not return. [No response] 登陆到这一节点查看minion的日志,发现如下的问题: $ tail -f /var/log/salt/minion The master may need to be updated , or If you are confident that you are connecting to a valid Salt Master,…
2.salt master已缓存此节点的公钥,此salt minion将等待10秒,然后再尝试重新验证. [ERROR ] The Salt Master has cached the public key for this node, this salt minion will wait for 10 seconds before attempting to re-authenticate 解决办法: 请务必关闭selinux和iptables…
Issue: When you set up a Salt Master server and several Minions, you may find that none of minions could be seen by master. nc -v -z salt.master.ip.addr 4505 nc: connect to 10.61.22.98 port 4505 (tcp) failed: No route to host Reason: The firewall on…
问题: 官网方式yum安装完saltstack之后,master与minion都成功启动后,但是却发现怎么都收不到minion的key.(zmq版本不一致所致,困扰了我好几天,希望能帮到大家.) 分析: master上的状态: # 查看master 上的配置文件,只修改了interface: [root@master doubles]# cat /etc/salt/master interface: 192.168.188.128 [root@master doubles]# systemctl…
原文地址:http://blog.51cto.com/4634721/2093019 saltstack 使用salt ‘*’ test.ping 报错Minion did not return. [Not connected] 在搭建了三台linux(centos6.5),部署saltstack时,在master上出现报错Minion did not return. [Not connected],网上找了下方法,解决了 在master上:删除报错的主机rm -rf /etc/salt/pki…
参考:http://www.52devops.com/chuck/814.html 查看salt-minion的运行状态,显示salt-master已经缓存了这个minion,但是minion在重新认证之前将要等待10秒,其实此情况是正常情况,因为salt-master没有接收minion的认证,但是由于master上无法查看minion的应有id而是显示了错误的id导致 minion删除minion_id /etc/salt/minion_id master端删除key salt-key -a…
总结: 对于python2.7环境下的salt来说,要安装pip install mysql-python 对于python3环境下的salt来说,pip install mysqlclient的时候要和salt在同一个目录下 1.生产环境3.6的,这个怎么整呢 1.2019.2 的salt [root@IP ~]# salt-call --versions-report Salt Version: Salt: 2019.2.0 Dependency Versions: cffi: Not In…
[问题描述] 在使用Git Push代码的时候,会出现 Push to origin/master was rejected 的错误提示. 在第一次提交到代码仓库的时候非常容易出现,因为初始化的仓库和本地仓库是没有什么关联的,因此,在进行第一次的新代码提交时,通常会出现这个错误. [问题原因] 远程仓库和本地仓库的内容不一致 [解决方法] 在git项目对应的目录位置打开Git Bash   然后在命令窗输入下面命令: git pull origin master --allow-unrelate…