Linux安装基础Ansible

成功安装基础的Ansible为后续实验做准备

配置ip地址

nmcli connection modify "ens32" ipv4.method manual ipv4.addresses "192.168.183.160/24" ipv4.gateway "192.168.183.2" ipv4.dns "114.114.114.114" connection.autoconnect yes

##重新启动网络
nmcli con down ens32
nmcli con up ens32

Linux安装基础Ansible

关闭防火墙和SELinux配置

##关闭防火墙及开机自启
 systemctl stop firewalld.service
 systemctl disable firewalld.service

##关闭SeLinux及开机自启
setenforce 0

vim /etc/selinux/config
SELINUX=disabled

Linux安装基础Ansible

Linux安装基础Ansible

更换yum源

首先使用mv /etc/yum.repos.d/Centos-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup备份,之后使用以下命令:

##下载新的CentOS-Base.repo到/etc/yum.repo.d/
curl  -o  /etc/yum.repos.d/CentOS-Base.repo  http://mirrors.163.com/.help/CentOS7-Base-163.repo

Linux安装基础Ansible

更新数据

yum clean all   	##清除以前的yum数据库信息
yum makecache 	 	##更新yum仓库本地缓存
yum repolist     	##查看仓库信息

Linux安装基础Ansible

安装

使用以下命名安装Ansible

yum -y install epel-release
yum -y install ansible 

可以使用 ansible --version验证是否成功安装。
Linux安装基础Ansible

上一篇:CentOS7.X 系统优化


下一篇:初始化配置