IIS 7 Error "A specified logon session does not exist. It may already have been terminated." when using https

asp.netIisSslClient Certificates

asp.net Problem Overview


I am trying to create Client Certificates Authentication for my asp.net Website.

In order to create client certificates, I need to create a Certificate Authority first:

> makecert.exe -r -n “CN=My Personal CA” -pe -sv MyPersonalCA.pvk -a > sha1 -len 2048 -b 01/01/2013 -e 01/01/2023 -cy authority > MyPersonalCA.cer

Then, I have to import it to IIS 7, but since it accepts the .pfx format, i convert it first

pvk2pfx.exe -pvk MyPersonalCA.pvk -spc MyPersonalCA.cer -pfx MyPersonalCA.pfx

After importing MyPersonalCA.pfx, I try to add the https site binding to my Web Site and choose the above as SSL Certificate, but I get the following error:

enter image description here

Any suggestions?

asp.net Solutions


Solution 1 - asp.net

I ran across this same issue, but fixed it a different way. I believe the account I was using changed from the time I initially attempted to set up the certificate to the time where I returned to finish the work, thus creating the issue. What the issue is, I don't know, but I suspect it has to do with some sort of hash from the current user and that is inconsistent in some scenarios as the user is modified or recreated, etc.

To fix it, I ripped out of both IIS and the Certificates snap-in (for Current User and Local Computer) all references of the certificate in question:

IIS certificates

mmc.exe --> add/remove snap-ins, choose certificates then local computer or current user

Next, I imported the *.pfx file into the certs snap-in in MMC, placing it in the Local Computer\Personal node:

  1. Right-click the Certificates node under Personal (under Local Computer as the root)
  2. All Tasks -> Import
  3. Go through the Wizard to import your *.pfx

From that point, I was able to return to IIS and find it in the Server Certificates. Finally, I went to my site, edited the bindings and selected the correct certificate. It worked because the user was consistent throughout the process.

To the point mentioned in another answer, you shouldn't have to resort to marking it as exportable as that's a major security issue. You're effectively allowing anyone who can get to the box with a similar set of permissions to take your cert with them and import it anywhere else. Obviously that's not optimal.

Solution 2 - asp.net

Security warning: what the checkbox really means is that the certificate can be read by users that shouldn't be able to read it. Such as the user running the IIS worker process. In production use the other answer instead.

Happened to me too, and was fixed by ensuring that "Allow this certificate to be exported" is checked when you import it:

                                            enter image description here

(thanks to this post!)

Solution 3 - asp.net

This must be some kind of IIS bug, but I found the solution.

1- Export MyPersonalCA.pfx from IIS.

2- Convert it to .pem:

openssl pkcs12 -in MyPersonalCA.pfx -out MyPersonalCA.pem -nodes

3- Convert it back to .pfx:

openssl pkcs12 -export -in MyPersonalCA.pem -inkey MyPersonalCA.pem -out MyPersonalCA.pfx

4- Import it back to IIS.

Solution 4 - asp.net

We had the same issue due to incorrectly importing the certificate into the Current User Personal certificate store. Removing it from the Current User Personal store and importing it into the Local Machine Personal certificate store solved the problem.

Solution 5 - asp.net

Nobody probably cares about this anymore, but I just faced this issue with my IIS 7 website binding. The way I fixed it was going to the Certificate Authority and finding the certificate issued to the server with the issue. I verified the user account that requested the certificate. I Then logged into the IIS server using RDP with that account. I was able to rebind the https protocol using that account only. No exports, reissuing, or extension changing hacks were needed.

Solution 6 - asp.net

In our case this problem occurred because we have installed the certificate in a Virtual Machine and made an image of it for further use.

When creating another VM from the image previously created the certificate sends the message.

To avoid this be sure to install the certificate on every new VM installed.

Solution 7 - asp.net

Instead of importing the cert from IIS, do it from MMC. Then goto IIS for binding.

Solution 8 - asp.net

According to the MSDN blog post, this can happen when the current user account doesn't have permission to access the private key file which is under the folder "C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys". Apparently this can be resolved by granting the user account / user group Full Access permission to the above folder.

I've come across the same issue, and was able to resolve it by simply re-importing the .pfx file with the Allow this certificate ti be exported checkbox selected.

Import Certificate

> However, this method imposes a security risk - as any user who has > access to your IIS server will be able to export your certificate with > the private key.

In my case, only I have access to my IIS server - therefore it was not a huge risk.

Solution 9 - asp.net

I got this error due to wrong openssl command-line during export PKCS #12 certificate. -certfile key was wrong. I exported certificate again and it was imported successfully.

Solution 10 - asp.net

We found another cause for this. If you are scripting the certificate install using PowerShell and used the Import-PfxCertificate command. This will import the certificate. However, the certificate imported cannot be bound to a website in IIS with the same error as this question mentions. You can list certificates using this command and see why:

certutil -store My

This lists the certificates in your Personal store and you will see this property:

Provider = Microsoft Software Key Storage Provider

This storage provider is a newer CNG provider and is not supported by IIS or .NET. You cannot access the key. Therefore you should use certutil.exe to install certificates in your scripts. Importing using the Certificate Manager MMC snap-in or IIS also works but for scripting, use certutil as follows:

certutil -f -p password -importpfx My .\cert.pfx NoExport

See this article for more information: https://windowsserver.uservoice.com/forums/295065-security-and-assurance/suggestions/18436141-import-pfxcertificate-needs-to-support-legacy-priv

Solution 11 - asp.net

Guys after trying almost every single solution to no avail i ended up finding my solution to '“A specified logon session does not exist. It may already have been terminated.” when using https" below

  1. Verify your pfx cert is healthy with correct private key

  2. Run certutil and locate the certs 'unique Container name' - i used certutil -v -store my

3.Navigate to C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys and locate the system file that corresponds to your Container name found above

  1. Check permissions and ensure 'system' has full control to file.

Once applied i then checked IIS and was able to apply to https without error

Solution 12 - asp.net

I had the same issue. Solved by removing the certificate from de personal store (somebody put in it) and from the webhosting. All done through the IIS manager. Then I added again to the webhosting store (with everything checked) and I can use HTTPS again...

Solution 13 - asp.net

In my case it was because the World Wide Publishing Service user didn't have permissions to the certificate. After installing the certificate, access the certificates module in MMC and right-click the certificate with the issue. Select "Manage Private Keys..." from the "All Tasks" menu and add the above user. This was SYSTEM user in my case.

Solution 14 - asp.net

I was getting a this error when trying to bind localhost pfx cert for my development machine. Before i tried any of this above, tried something simpler first.

  1. Closed any localhost dev site i had openned.
  2. Stopped my IIS server and closed the manager
  3. run the manager as Admin
  4. Added all my https bindings, no errors or issues this time.
  5. restarted iis

Everything seems to work after that.

Solution 15 - asp.net

I was getting same error whilst binding the certificate, but fixed after deleting the certificate and importing again through mmc console.

Solution 16 - asp.net

In my case, it has been fixed by using certutil -repairstore command. I was getting following error, when trying to add certificate to Web Binding on IIS using powershell:

> A specified logon session does not exist. It may already have been terminated.

I fixed it by running:

certutil.exe -repairstore $CertificateStoreName $CertThumbPrint

where CertificateStoreName is store name, and CertThumbPrint is the thumbprint of imported certificate.

Solution 17 - asp.net

I managed to fix this problem by importing the SSL certificate PFX file using Windows Certificate Manager.

http://windows.microsoft.com/en-us/windows-vista/view-or-manage-your-certificates

Solution 18 - asp.net

I just had this issue today and feel compelled to post my solution in the hope that you will lose less hair than I've just done.

After trying the solutions above, we had to re-issue the SSL certificate from the SSL provider (RapidSSL issuing as a reseller for GeoTrust).

There was no cost with this process, just the five minute wait while the confirmation emails (admin@) arrived, and we gained access again.

Once we had the response, we used IIS > Server Certificates to install it. We did not need the MMC snap-in.

https://knowledge.rapidssl.com/support/ssl-certificate-support/index?page=content&id=SO5757

We kept a remote desktop window to the server open throughout, to avoid any issues with differing login accounts/sessions, etc. I do believe it is an IIS bug as another expert believes, as we only have one RDC account. What is most infuriating is that the very same certificate has been working perfectly for two months before suddenly "breaking".

Solution 19 - asp.net

In my case I imported a newer version of a certificate (PFX for IIS) from StartSSL just recently and forgot to remove the old one, which somehow caused this error (now two certs sort of the same). I removed both of them, imported the proper one, and now it works.

Solution 20 - asp.net

I was able to fix this problem by removing the then importing it by double clicking the certificate.

Solution 21 - asp.net

For me, the fix was to delete the cert from IIS and re-import it, but into the "personal" certificate store instead of "web hosting"

According to the below, this is fine, at least for my own circumstances.

Also, should it make any difference, I imported the certificate via the wizard after double clicking on it on the local machine, instead of via the IIS import method. After this the certificate was available in IIS automatically.

Solution 22 - asp.net

Try :

  1. Go into IIS and delete "VSTS Dev Router" web site and "VSTS Dev Router Pool" application pool.
  2. Run “certlm.msc” and open Personal/Certificates
  3. Delete any cert named “*.vsts.me” and "vsts.me"
  4. Re-deploy

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionenb081View Question on Stackoverflow
Solution 1 - asp.netMike LView Answer on Stackoverflow
Solution 2 - asp.netRoman StarkovView Answer on Stackoverflow
Solution 3 - asp.netenb081View Answer on Stackoverflow
Solution 4 - asp.netuser5186956View Answer on Stackoverflow
Solution 5 - asp.netSkankyMidgetView Answer on Stackoverflow
Solution 6 - asp.netPaulo DinisView Answer on Stackoverflow
Solution 7 - asp.netKuldeep HegganaView Answer on Stackoverflow
Solution 8 - asp.netJanaka DissanayakeView Answer on Stackoverflow
Solution 9 - asp.netDer_MeisterView Answer on Stackoverflow
Solution 10 - asp.netEd GreavesView Answer on Stackoverflow
Solution 11 - asp.netopieo69View Answer on Stackoverflow
Solution 12 - asp.netEdgarView Answer on Stackoverflow
Solution 13 - asp.netuser2034250View Answer on Stackoverflow
Solution 14 - asp.netYogurt The WiseView Answer on Stackoverflow
Solution 15 - asp.netRamView Answer on Stackoverflow
Solution 16 - asp.netnaimadswdnView Answer on Stackoverflow
Solution 17 - asp.netjorelView Answer on Stackoverflow
Solution 18 - asp.netEvilDrView Answer on Stackoverflow
Solution 19 - asp.netJames WilkinsView Answer on Stackoverflow
Solution 20 - asp.netWasif EhsanView Answer on Stackoverflow
Solution 21 - asp.netuser5947282View Answer on Stackoverflow
Solution 22 - asp.netVikas GuptaView Answer on Stackoverflow