getting error when i set ssh-agent for root user

47 views
Skip to first unread message

pranay varankar

unread,
Sep 29, 2018, 7:05:31 AM9/29/18
to Ansible Project
Hi,

I need to add ssh-agent for root user. so I use below command through ansible task but getting an error.

eval `ssh-agent -s` && ssh-add ~/.ssh/id_rsa"

please give me task to perform below command on my target machine.

Jonathan Lozada De La Matta

unread,
Sep 29, 2018, 3:33:45 PM9/29/18
to ansible...@googlegroups.com
what error are you getting ?

--
You received this message because you are subscribed to the Google Groups "Ansible Project" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ansible-proje...@googlegroups.com.
To post to this group, send email to ansible...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/fe7af62c-fb24-4d95-8acc-0078e45a955f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


--

Jonathan lozada de la matta

AUTOMATION PRACTICE



 

pranay varankar

unread,
Sep 29, 2018, 5:04:17 PM9/29/18
to ansible...@googlegroups.com
Hi  Jonathan,

actually i m not getting error when i run playbook but after i will login to client machine and check using "ssh-add -l"  command then i get "Could not open a connection to your authentication agent" error.

Can you send me task code to perform this operation. 

Jonathan Lozada De La Matta

unread,
Sep 29, 2018, 5:23:45 PM9/29/18
to ansible...@googlegroups.com
try

ssh-agent bash

then 

ssh-add




For more options, visit https://groups.google.com/d/optout.

pranay varankar

unread,
Sep 29, 2018, 6:03:12 PM9/29/18
to ansible...@googlegroups.com
Hi Jonathan,

But which module I use to run eval `ssh-agent -s` or ssh-add /root/bashrc.

Shell/command/action/raw module to create task for above command


Jonathan Lozada De La Matta

unread,
Sep 29, 2018, 7:41:27 PM9/29/18
to ansible...@googlegroups.com
what exactly are you trying to accomplish?


For more options, visit https://groups.google.com/d/optout.

pranay varankar

unread,
Sep 30, 2018, 6:52:41 AM9/30/18
to ansible...@googlegroups.com
Hi Jonathan,

I use below task in my playbook,

- name: Add and load private key to ssh-agent
  shell: "eval `ssh-agent -s` && ssh-add ~/.ssh/id_rsa"

When i run playbook no error found,

image.png

But I log in to my client machine and type "ssh-add -l" command then I get below error

image.png


Dan Linder

unread,
Sep 30, 2018, 2:15:33 PM9/30/18
to Ansible Project
The "ssh-agent" and "ssh-add" are usually run on a system as a specific user to add an SSH key to a temporary 'keychain' so any subsequent SSH commands can automatically (and without prompting) use a specific ssh key to connect to a second system.

When you run them in the Ansible "shell" module, it's running those on the remote system and once that module completes, the ssh keychain process ("ssh-agent") is closed and it goes away.

As  Johnathan asked, what are you trying to get setup by running these steps?  It looks like you're trying to get it setup so you can SSH into the "ubuntu-target" system as root using the "id_rsa" key on "ubuntu" .  (But since your ansible-playbook command doesn't prompt for credentials, it appears you already have the shared ssh key setup, so I'm confused what larger problem you're trying to solve...)

pranay varankar

unread,
Sep 30, 2018, 3:25:38 PM9/30/18
to ansible...@googlegroups.com
Hi Dan,

Thanks for providing information.

Actually, I have already add key file to client machine. 

I have a question ...The task i wrote in playbook in correct or not ? if it wrong can you send me the correct task to perform those command on client machine.

- name: Add and load private key to ssh-agent
  shell: "eval `ssh-agent -s` && ssh-add ~/.ssh/id_rsa"


Dan Linder

unread,
Sep 30, 2018, 4:56:36 PM9/30/18
to Ansible Project
Hi Pranay,

You asked, is "task i wrote in playbook in correct or not ?"

Based on the output from your playbook provided earlier, the tasks/commands ("ssh-agent" and "ssh-add") ARE being executed on the remote machine without error - the yellow "changed:" response notes that the "shell:" module ran and the two commands did not return an error.

Back to the question we asked earlier, what are you trying to get setup by running these steps?

Until you can tell us what you're trying to do exactly by running these commands, we can't really help you further.  You've setup the "shell:" module properly and the commands run without error.  Until we know what you're trying to do later we can't provide any further assistance.

pranay varankar

unread,
Sep 30, 2018, 6:47:46 PM9/30/18
to ansible...@googlegroups.com
Hi Dan,

Actually we install some of my on-premises software on remote machine but we required ssh-agent configured on that remote machine to install this software.

without authenticate with that keys we can not able to install this software on my remote machine.

is their any way to check the below task was running properly on my remote machine.

- name: Add and load private key to ssh-agent
  shell: "eval `ssh-agent -s` && ssh-add ~/.ssh/id_rsa"

Dan Linder

unread,
Sep 30, 2018, 9:38:09 PM9/30/18
to ansible...@googlegroups.com
If the ssh-agent must be running for your installer to complete, then you'll probably have to run it after the ssh-add:

- name: Add and load private key to ssh-agent and start installer
  shell: "eval `ssh-agent -s` && ssh-add ~/.ssh/id_rsa && /path/to/installer"

My gut feeling is that there's something missing that would make your task a lot easier and not need the ssh-agent/ssh-add processes.

You received this message because you are subscribed to a topic in the Google Groups "Ansible Project" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/ansible-project/PrRiiQHS7mM/unsubscribe.
To unsubscribe from this group and all its topics, send an email to ansible-proje...@googlegroups.com.

To post to this group, send email to ansible...@googlegroups.com.

For more options, visit https://groups.google.com/d/optout.


--
***************** ************* *********** ******* ***** *** **
"If you wish to make an apple pie from scratch, 
  you must first invent the universe."
  -- Carl Sagan

"Quis custodiet ipsos custodes?"
    (Who can watch the watchmen?)
    -- from the Satires of Juvenal

"I do not fear computers, I fear the lack of them."
    -- Isaac Asimov (Author)
** *** ***** ******* *********** ************* *****************
Reply all
Reply to author
Forward
0 new messages