asp.netcore常见问题
# MySqlConnector.MySqlException (0x80004005): SSL Authentication Error
报以上错误时,可以尝试在mysql链接字符串中添加;SslMode=None;Pooling=true
手动关闭SSL连接:SslMode=None
将数据库连接配置里的连接池设置为true:Pooling=true
# ASP.NET Core 健康检查警告日志:"Failed to determine the https port for redirect"
在appsettings.json
中添加https_port
{
"https_port": 443
}
1
2
3
2
3
上次更新: 2023/12/04, 14:31:29