Output to see why my playbook is failing? #614
Replies: 2 comments 7 replies
-
@itinneed2022 you don't run this playbook on your ansible control node, right? (at least, I don't see The "[Errno 104] Connection reset by peer" error indicates that there's some connection configuration issue. The reason why your sqlcmd works is probably because you run it on another server but that ansible task runs on your DB host (ansible sends it via ssh on that DB host and executes it there on the python interpreter, so it tries to connect from that host to the same host). |
Beta Was this translation helpful? Give feedback.
-
Ah, i see:) No problem. Please take this comment into consideration for future cases. |
Beta Was this translation helpful? Give feedback.
-
I have the following playbook:
When I run it, I only get this error:
But if I run it with sqlcmd, it works:
What am I missing here?
Beta Was this translation helpful? Give feedback.
All reactions