From cf024c815082440f7573a78b181d94bb0c4390b3 Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sun, 17 May 2026 05:04:14 -0400 Subject: [PATCH] fix: point Admin ConfigDb at the shared SQL host MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Admin appsettings.json still carried Server=localhost,14330 — a straggler from before the 2026-04-28 Docker migration that moved SQL Server onto the shared Linux host. Every other checked-in appsettings was rewritten then; this one was missed, so the Admin web UI returned HTTP 500 on every page (SqlException, connection timeout). Repoint it at 10.100.0.35,14330 to match. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/Server/ZB.MOM.WW.OtOpcUa.Admin/appsettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.Admin/appsettings.json b/src/Server/ZB.MOM.WW.OtOpcUa.Admin/appsettings.json index cbb842a..39fddd1 100644 --- a/src/Server/ZB.MOM.WW.OtOpcUa.Admin/appsettings.json +++ b/src/Server/ZB.MOM.WW.OtOpcUa.Admin/appsettings.json @@ -1,6 +1,6 @@ { "ConnectionStrings": { - "ConfigDb": "Server=localhost,14330;Database=OtOpcUaConfig;User Id=sa;Password=OtOpcUaDev_2026!;TrustServerCertificate=True;Encrypt=False;" + "ConfigDb": "Server=10.100.0.35,14330;Database=OtOpcUaConfig;User Id=sa;Password=OtOpcUaDev_2026!;TrustServerCertificate=True;Encrypt=False;" }, "Authentication": { "Ldap": {