Alteryx Server Discussions

Find answers, ask questions, and share expertise about Alteryx Server.

Problem when using an SSL certificate to bind the https port

kareemshah
5 - Atom

I'm attempting to turn on HTTPS for my personal gallery.

I'm receiving "The Parameter is Incorrect" when I try to bind https port 443 with a certificate.
Please provide a hand with this.

3 REPLIES 3
fmvizcaino
17 - Castor
17 - Castor

Hi @kareemshah ,

 

Are you following all the steps from this tutorial? https://knowledge.alteryx.com/index/s/article/Configuring-Alteryx-Server-for-SSL-Obtaining-and-Insta...

 

If you are, sometimes the cert hash comes with an invisible character before/after the string. I would suggest deleting the first and last characters and re-adding them, just in case. Or check with Notepad++ for weird characters.

 

Best,

Fernando Vizcaino

JOHN_sprocket_knuckle
6 - Meteoroid

Break the command to bind the certificate into separate parts. Follow these steps instead of typing the entire command in the command prompt window (i.e.; "netsh http add sslcert ipport=0.0.0.0:443 certhash=‎74d4ca722e2954cd225f9b4697d2fc7f6747194c appid={eea9431a-a3d4-4c9b-9f9a-b83916c11c67}").

 

Steps:

  1. Go to command prompt
  2. type "netsh"
  3. type "http add sslcert ipport=0.0.0.0:443 certhash=‎74d4ca722e2954cd225f9b4697d2fc7f6747194c appid={eea9431a-a3d4-4c9b-9f9a-b83916c11c67}"

(Replace the certhash from above with your certificate thumbprint)

jhonadam23
5 - Atom

The error "The Parameter is Incorrect" when binding HTTPS to port 443 usually means an issue with the SSL certificate or IIS setup. First, check if the certificate is valid, not expired, and has a private key (look for the key icon in MMC > Certificates > Personal). If the private key is missing, re-import the certificate with the full. PFX file. Also, ensure the hostname matches the certificate’s domain. If the issue persists, try removing and re-adding the binding in IIS or running netsh http show sslcert in CMD to check existing bindings. Hope this helps!