You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Rackspace hosts, it is necessary to change the port to match the value found in secrets (change 12345):
634
+
635
+
```powershell
636
+
winrm set winrm/config/Listener?Address=*+Transport=HTTPS '@{Port="12345"}'
637
+
```
638
+
639
+
On Azure, changing the ports is done in the Load Balancer configuration using the Azure Portal.
640
+
641
+
To see the status of running listeners:
642
+
643
+
```powershell
644
+
winrm enumerate winrm/config/listener
645
+
```
646
+
647
+
#### Test
648
+
623
649
Test the connection to the target machine with `ansible HOST -m win_ping -vvvv`. If there is any issue, please refer to the official Ansible documentation in [Setting up a Windows Host][].
After these steps are performed and the Pi's are running, Ansible can be run to finish setup. A reboot is recommended after initial setup to ensure the environment is configured correctly (locale and other settings that are changed).
736
762
737
-
[Setting up a Windows Host]: https://docs.ansible.com/ansible/latest/user_guide/windows_setup.html
0 commit comments