Using SSL ensures that your connection with the server is encrypted. To use SSL, you will need to have the following files ready during installation:
-
PKCS12 certificate (.p12
, .pkcs12
, .pfx
)
-
Client certificate (.pem
, .cert
, .crt
, .cer
)
-
Client key (.pem
, .key
)
SSL Support for Non EN-US Locales
The installation scripts rely on a specific date format to verify the provided SSL certificate is not expired. Depending on your locale, the installation might terminate early with the following error:
10 was unexpected at this time.
To resolve this issue, you can quickly switch locales, run the installation, then switch back. To do this, open up PowerShell and navigate to your installation directory. Then run the following:
# Take note of your current locale
Get-Culture
# Switch to "en-US" for the installation
Set-Culture en-US
.\install_rms.bat
# Switch back to your original locale, taken from the output of the first command
Set-Culture hu-HU