Using PowerShell on-premise without HTTPS
By Default the Ranger PowerShell module is configured to operate with HTTPS with the Enoten cloud platform. If you are running on-premise without implementing HTTPS on your server then the PowerShell module needs to be loaded with arguments to turn off HTTPS and possibly FQDN checking.
Syntax
Import-Module EzUDM -force -argumentlist useHTTPS, validateFQDN
Parameter | Description | Class | Default | Usage |
---|---|---|---|---|
EzUDM | The name of the Enoten PowerShell module. The PowerShell module should have ben installed in the PSModulePath | String | Required | |
Force | This forces the reloading of the PowerShell module | Required | ||
Argumentlist | There are two Boolean positional values that are available.
| Boolean | $True,$True | Optional |
Examples
Example 1
In Example 1, the module is loaded and prepared for a UDM server which is not using HTTPS
Import-Module EzUDM -force -argumentlist $False
Example 2
In Example 2, the module is loaded and prepared for a UDM server which is not using HTTPS and the format of the tenant FQDN is not checked this is useful where the tenant is not in DNS and you just want to use an IP Address or the DNS entry is not a full FQDN.
Import-Module EzUDM -force -argumentlist $False, $False