LoginSignup
4
3

More than 5 years have passed since last update.

CentOS5にansibleをインストールするメモ

Posted at

デフォルトだと、pythonのバージョンが2.4なので、アップデート

rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm

vi /etc/yum.repos.d/epel.repo

[epel]
...
enabled=0
yum -y install python26 --enablerepo=epel

gitが入ってない場合はインストール

yum install git

ソースをダウンロードしてインストール実行

cd /usr/local/src
git clone git://github.com/ansible/ansible.git
cd ./ansible
make install
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3