I am using a dockerized Golang image to connect to my Azure SQL server
database. When I try to ping it, I am running into "TLS Handshake failed:
x509: certificate signed by unknown authority". I am able to run my app
from my box without dockerization without any issues. I am also able to
able to ping my Azure Postgres server with sslmode=require without issues
using the same Golang image. I am using
https://github.com/denisenkom/go-mssqldb package. My connection code is:
db, err := sql.Open("sqlserver", "server=myserver.database.windows.net;user
id=myuserid;"+
password=mypassword;port=1433;database=mydbname;encrypt=true;
TrustServerCertificate=false;"+
connection+timeout=30;hostNameInCertificate=*.database.windows.net;")
if err != nil {
globals.Log.WithError(err).WithFields(logrus.Fields{
"drivername": "sqlserver",
"connectionstring": "secret",
"error": err.Error()}).Panic("Unable to connect to
db")
What am I missing?
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/golang-nuts/0a0591d0-2b5a-4d21-8e95-012ba26b3900%40googlegroups.com.