--
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/b495f189-4576-4e3c-be88-de04b2a6674c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
May check permissions of authorized_keys
On Thu, 27 Jun 2019 at 17:46, Ryad karkar <ryad9...@gmail.com> wrote:
Hy all,--when i use become_user: wildflyi have have this message error :path /home/wildfly/.ssh/authorized_keys does not existBut this path exist in destination host...Someone have idea please ??!Thanks community ansible for your help !! ;)ansible version : 2.8Regards,
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...@googlegroups.com.
May check permissions of authorized_keys
On Thu, 27 Jun 2019 at 17:46, Ryad karkar <ryad9...@gmail.com> wrote:
Hy all,--when i use become_user: wildflyi have have this message error :path /home/wildfly/.ssh/authorized_keys does not existBut this path exist in destination host...Someone have idea please ??!Thanks community ansible for your help !! ;)ansible version : 2.8Regards,
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...@googlegroups.com.
Have you checked permissions on /home/wildfly/.ssh/ too? That needs to be 700 (rwx) – see eg below:
[root@<server>]# ls -ld /home/wildfly/.ssh
drwx------. 2 wildfly wildfly 4096 Jun 7 14:26 /home/ wildfly /.ssh
[root@<server>]#
Regards
Phil
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/5c7b7143-53af-4ad7-b7d4-e8efff8c1aa8%40googlegroups.com.
What task are you trying to perform eventually? If it’s something like adding a new package, you may need to connect with the normal wildfly user first and then become root. If so, something like similar might be more appropriate:
- name: Test
hosts: all
remote_user: wildfly
become: yes
become_method: sudo
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/ca3ca887-43f9-4491-bc57-fb9730678049%40googlegroups.com.
Did my suggestion work for you or did you resolve it in some other way?
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/8c5d1fdd-7021-4b28-b055-f556270bf225%40googlegroups.com.