Hi ,
I am new to this Ansible.
I was gone through the first step, and got the below update.
sudo easy_install pip
Searching for pip
Best match: pip 8.1.2
Processing pip-8.1.2-py2.7.egg
pip 8.1.2 is already the active version in easy-install.pth
Installing pip script to /usr/local/bin
Installing pip2.7 script to /usr/local/bin
Installing pip2 script to /usr/local/bin
Using /Library/Python/2.7/site-packages/pip-8.1.2-py2.7.egg
Processing dependencies for pip
Finished processing dependencies for pip
I was gone through the second step, and gone through the below error. Can you help on fixing this.
sudo pip install ansible
The directory '/Users/Ramesh/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/Users/Ramesh/Library/Caches/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
...
...
...
Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/private/tmp/pip-build-a1b7Ba/pycrypto/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-hjCGT7-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/tmp/pip-build-a1b7Ba/pycrypto/
Hi,
Thanks to all.
I created the setup of “vagrant with cent OS”.
When I do configuration, I could see the below error after done with “ping” command.
[root@localhost ansible]# ansible example -m ping -u vagrant
localhost | UNREACHABLE! => {
"changed": false,
"msg": "Failed to connect to the host via ssh.",
"unreachable": true
}
[root@localhost ansible]#
My configuration file is like this:
## db-[99:101]-node.example.com
[example]
localhost
and my hostname is like this
[root@localhost ansible]# hostname
localhost.localdomain
[root@localhost ansible]#
Can you help me on fixing this. What are the steps required to finish this.
--
Hi
I fixed it on my own.
I have to give the user name, and that will work. Thanks all.
[root@localhost ~]# ansible all -m ping -s -k -u vagrant
SSH password:
127.0.0.1 | SUCCESS => {
"changed": false,
"ping": "pong"
}
[root@localhost ~]#