Hello all,
I'm running a PowerShell script with the Az Module locally that creates a Resource Group (with all the bells & whistles), deploys a Windows Server 2016 image, and runs a remote session to start prepping the machine after spinning it up.
However I'm getting an intermittent issue where remote connection to the server fails :
[<pip>] Connecting to remote server <pip> failed with the following error message : The SSL connection cannot be established.
Verify that the service on the remote host is properly configured to listen for HTTPS requests.
Consult the logs and documentation for the WS-Management service running on the destination, most commonly IIS or WinRM.
If the destination is the WinRM service, run the following command on the destination to analyze and configure the WinRM service:
"winrm quickconfig -transport:https".
For more information, see the about_Remote_Troubleshooting
Help topic.
+ CategoryInfo : OpenError: (<pip>:
String) [], PSRemotingTransportException
+ FullyQualifiedErrorId : -2144108102,PSSessionState
Broken
Copy Files Failure : Aborting Deployment.
I haven't found anything directly useful in
about_Remote_Troubleshooting
TCP tests are good for port 5986 (NSG is configured to allow it), and I'm instantiating the VM with
Set-AzVMOperatingSystem
Options :
-ProvisionVMAgent -WinRMHttp -WinRMHttps -WinRMCertificateUrl <secretURL>
The secret is a Self-Signed .pfx Certificate from my machine uploaded in the RG's keyvault in a secureString json object.
I'm trying to enter a remote session with
(New-PSSessionOption -SkipCACheck -SkipCNCheck -SkipRevocationCheck)
RDC works, Web port 80 works, and the Win Remote Management service is found to be running.
Running 'winrm quickconfig' to create a listener doesn't help because the server doesn't have valid certificate.
WinRM events do not update when I try a remote session so clearly something is blocking the request or it's just not listening despite everything I know being set up for it.
The issue seems to keep occurring no matter how many deployment I start, and stays for a period of time, but then clears up later.
I feel that it's significant to mention, but I don't know precisely why it's happening.
I don't know what to try next, what am I missing ?
Your thoughts & time is appreciated,
Thank you.