Skip to content
Dan Leech edited this page Dec 16, 2014 · 4 revisions

 

 

 

DOCS HAVE MOVED

This wiki is no longer maintained and should not be used. Read the Event Store docs at docs.geteventstore.com.

 

 

 

This description is wrong, but it's approximately right:

  1. Generate a certificate openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout privateKey.key -out certificate.crt
  2. Convert to Windows-format: openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt
  3. Import into trusted: certutil -dspublish -f certificate.crt NTAuthCA
  4. In PowerShell find its thumbprint, something like this: $(ls cert:\ | select-object -first 1).Thumbprint and use and use that in EventStore
Clone this wiki locally