欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.net core部署到linux可能碰到的问题

程序员文章站 2022-05-18 17:28:33
连接SqlServer 2008R2数据库超时 .Net Core 在 Linux 下连接 SqlServer 需要 SqlServer2008 SP3或以上版本,或SqlServer2012,或SqlServer2014. 如果SqlServer2008低于SP3版本,会出现连接超时的问题。 解决 ......
缺少icu库
以独立部署 (scd)的方式发包,运行时报错
错误信息:failfast: couldn't find a valid icu package installed on the system. set the configuration flag system.globalization.invariant to true if you want to run with no globalization support.
解决方法有三
1、安装icu库,运行命令:yum install icu
2、项目配置文件.runtimeconfig.json,加入以下配置
{"runtimeoptions": { "configproperties": { "system.globalization.invariant": true } } }
3、项目csproj添加以下配置
<itemgroup>
<runtimehostconfigurationoption include="system.globalization.invariant" value="true" />
</itemgroup>

连接sqlserver 2008r2数据库超时

.net core 在 linux 下连接 sqlserver 需要 sqlserver2008 sp3或以上版本,或sqlserver2012,或sqlserver2014.

如果sqlserver2008低于sp3版本,会出现连接超时的问题。

解决办法:

官方下载sqlserver 2008 sp3 补丁

https://download.microsoft.com/download/9/6/4/964bb4ec-fc28-4da7-9295-7d4a8fdbe1a4/chs/sqlserver2008r2sp3-kb2979597-x64-chs.exe 64位

https://download.microsoft.com/download/9/6/4/964bb4ec-fc28-4da7-9295-7d4a8fdbe1a4/chs/sqlserver2008r2sp3-kb2979597-x86-chs.exe 32位

 

httpclient访问https资源报错

错误信息:system.platformnotsupportedexception: the handler does not support client authentication certificates with this combination of libcurl (7.29.0) and its ssl backend ("nss/3.28.4").

解决方法请看以下连接

解决linux netcore https请求使用自签名证书忽略安全检查方法

centos curl ssl 替换 nss 为 openssl

 

参考:https://blog.csdn.net/free_wind22/article/details/81061653