2017-06-13 03:12 AM
Hi Folks,
We are on SA version 10.6.2.2 and planning to integrate Windows Servers (from 3 different domains) to SA using winrm + https mechanism.
Can someone please share checklist or pre-requisites need to fulfill for the requirement?
Thanks,
Utsav Sejpal
2017-06-13 05:17 AM
2017-06-22 08:10 PM
Hi Sravan,
Is there a way to disable the script (RSA provided for winrm config) which has been executed earlier (part of rollback plan)?
Thanks,
Utsav Sejpal
2017-06-23 12:33 AM
Hi Utsav,
I can't give complete rollback for the script. But, I can give a shot for deleting https listener and removing the collection user from the group which will be created by the script.
2017-06-23 01:00 AM
Hi Sravan,
Thanks for your inputs.
One more doubt is it possible to delete listener running on custom port 5986 for HTTPs? Above command would delete all listeners associated with HTTPs service.
Thanks,
Utsav Sejpal
2017-06-23 01:09 AM
Hi Utsav,
In Winrm 2, the default port is 5986 for https. If you have used custom port for configuration, Please use below command to remove.
Winrm delete winrm/config/listener?Address=*+Transport=HTTPS @{Port="<Custom_PORT_NUMBER>"}
Example:
Winrm delete winrm/config/listener?Address=*+Transport=HTTPS @{Port="2356"}
2017-06-23 01:25 AM
Hi Sraven,
No luck mate!! Using 6789 port number for listener
I ran all the below commands:
C:\>winrm delete winrm/config/listener?Address=*+Transport=HTTPS @{Port="6789"}
Error: Input was supplied to an operation that does not accept input.
C:\>winrm delete winrm/config/listener?Address=*+Transport=HTTPS @Port="6789"
Error: Input was supplied to an operation that does not accept input.
C:\>winrm delete winrm/config/listener?Address=*+Transport=HTTPS Port="6789"
Error: Invalid use of command line. Type "winrm -?" for help.
Thanks,
Utsav Sejpal
2017-06-23 01:39 AM
Hi Utsav,
Sorry, I don't have test server to test the command. Try below command to change custom port 6789 to default 5986.
Winrm set winrm/config/listener?Address=*+Transport=HTTPS @{Port="5986"}