From 283a9496863649a0981b050c11b1e5ecedb03b2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Correa=20Rodr=C3=ADguez?= Date: Thu, 19 Oct 2023 13:04:30 +0200 Subject: [PATCH] Improved Windows port requirement in Ansible deployment --- .../deploying-with-ansible/guide/install-ansible.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/source/deployment-options/deploying-with-ansible/guide/install-ansible.rst b/source/deployment-options/deploying-with-ansible/guide/install-ansible.rst index 75c6cf627a..d0e61f3a9b 100644 --- a/source/deployment-options/deploying-with-ansible/guide/install-ansible.rst +++ b/source/deployment-options/deploying-with-ansible/guide/install-ansible.rst @@ -34,7 +34,13 @@ The following minimum requirements should be met to use Ansible on Windows endpo - PowerShell 3.0 or newer. - At least .NET version 4.0 should be installed on the Windows endpoint. - A WinRM listener should be created and activated. -- The port 5986 specified in the `ansible_ssh_port` variable in the hosts file. + +Before deploying on your Windows endpoints, you must set Ansible to use port `5986`. Edit the `/etc/ansible/hosts` file and add the following lines. + +.. code-block:: none + + [] + ansible_ssh_port=5986 Installation on CentOS/RHEL/Fedora ----------------------------------