Requirements to Get SQL Server 2008 Working #26143
EncodedBird
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I know everyone who isn't stuck with SQL server 2008 for some arcane reason will hate reading this, but you can get it to work in azure data studio. Here are the requirements:
A: Generating the cert with openssl (comes as part of git) on the host machine. You can look up instructions to make self-signed cert then convert to pfx. I read somewhere that it needs to be at least 4096 bits for some things to support it, but I forgot where.
B: Import the converted pfx into a newer version of windows, then export it from the keystore with the older algorithm (so not sha-256). The resulting pfx is importable into the old windows version your sql server is likely coupled with (server 2012 in my case). This stackoverflow post is extremely helpful here.
C: You must then go into the registry and enable TLS1.2 per Microsoft's Instructions
SQL 2008 will never get TLS1.3 or higher, so eventually once these step fails it will be permanently obsolete I am sure.
Beta Was this translation helpful? Give feedback.
All reactions