3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

プロキシ環境のCentOSにAnsibleをインストールする方法メモ

3
Posted at

※まだpingしか試してないので他に必要なのあるかも

export http_proxy=http://
export https_proxy=https://
curl -O http://ftp.jaist.ac.jp/pub/Linux/Fedora/epel/6/i386/epel-release-6-8.noarch.rpm
rpm -ivh epel-*.rpm
yum install ansible
yum install openssh-clients

または

export http_proxy=http://
export https_proxy=https://
curl -O http://python-distribute.org/distribute_setup.py
python distribute_setup.py
easy_install pip
yum install gcc
yum install python-devel
pip install ansible
yum install openssh-clients
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?