ON THE SALT MASTER
Run these commands on the system that you want to use as the central management point.
curl -L https://bootstrap.saltstack.com -o install_salt.sh
sudo sh install_salt.sh -P -M -x python3
Your Salt master can manage itself, so a Salt minion is installed along with the Salt master. If you do not want to install the minion, also pass the -N option.
ON EACH SALT MINION
Run these commands on each system that you want to manage using Salt.
curl -L https://bootstrap.saltstack.com -o install_salt.sh
sudo sh install_salt.sh -P -x python3
本文介绍如何通过SaltStack进行系统的集中管理。首先,在盐主服务器上运行curl命令下载安装脚本,并使用sudo权限执行安装过程。接着,在每个盐从属节点上重复相同步骤。此部署方案允许盐主服务器自我管理并控制所有从属节点。
626

被折叠的 条评论
为什么被折叠?



