Difference between revisions of "Install Ansible in Linux CentOS 7"

From Gejoreuy
Jump to navigation Jump to search
(Created page with "== Purpose == Installing Ansible into our machine that running Linux CentOS 7. == Install PostGreSQL Client == <pre> [root@gejoreuy ~]# yum update [root@gejoreuy ~]# yum in...")
 
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
 
== Install PostGreSQL Client ==
 
== Install PostGreSQL Client ==
 +
 +
Just follow these three steps below.
  
 
<pre>
 
<pre>
Line 9: Line 11:
 
[root@gejoreuy ~]# yum install epel-release
 
[root@gejoreuy ~]# yum install epel-release
 
[root@gejoreuy ~]# yum install ansible
 
[root@gejoreuy ~]# yum install ansible
 +
</pre>
 +
 +
We can check if Ansible is installed successfully by finding its version.
 +
 +
<pre>
 +
[root@gejoreuy ~]# ansible --version
 
</pre>
 
</pre>

Latest revision as of 22:19, 20 July 2021

Purpose

Installing Ansible into our machine that running Linux CentOS 7.

Install PostGreSQL Client

Just follow these three steps below.

[root@gejoreuy ~]# yum update
[root@gejoreuy ~]# yum install epel-release
[root@gejoreuy ~]# yum install ansible

We can check if Ansible is installed successfully by finding its version.

[root@gejoreuy ~]# ansible --version