📜  安装 ansible - Shell-Bash (1)

📅  最后修改于: 2023-12-03 14:53:29.945000             🧑  作者: Mango

安装 Ansible

Ansible是一款开源的自动化IT工具,可用于自动化IT部署、配置管理和应用程序部署。它使用SSH和Python来管理远程节点,并使用YAML语言来编写配置文件。

Shell/Bash 安装

在大多数Linux发行版中,可以使用 shell 或 bash 安装 Ansible。

Ubuntu/Debian
sudo apt update
sudo apt install software-properties-common
sudo apt-add-repository --yes --update ppa:ansible/ansible
sudo apt install ansible
CentOS/Fedora
sudo yum install epel-release
sudo yum install ansible
Arch Linux
sudo pacman -S ansible
Gentoo Linux
sudo emerge --ask app-admin/ansible
配置主机

安装完成后,您需要配置要管理的主机列表。可以在/etc/ansible/hosts中配置列表。

[web_servers]
web1.example.com
web2.example.com

[db_servers]
db1.example.com
db2.example.com

现在您可以测试连接到远程主机:

ansible -m ping all

以上命令将向所有主机发送一个 ping 命令并打印响应状态。

结论

通过 shell 或 bash 安装 Ansible 很简单,安装后可以配置主机列表,方便管理。Ansible 是一款非常有用的自动化IT工具,可节省您的时间和精力。