YoChen
YoChen
yes ,I have the same problem,use these can't resolve. how to config sqlserver healthycheck?
> 分开部署的 > > ImServer 是独立的 .net core 应用服务,充当 websocket 服务端。 > > webapi 即你们开发的应用,可以是 .net core、.net framework,引用 ImCore.dll 他提供 ImHelper 静态类访问与 ImServer 进行交互。 感谢您的回复。 有个疑问,如果我直接将ImServer部署成服务,例如按此方法:https://www.cnblogs.com/tangchun/p/10382215.html 那么服务器上也有IIS存在着网站访问服务,端口分别为80和443,此时的ImServer服务端口还可以设置成80和443吗?也绑定一个指向此服务器并且未被IIS使用的域名?
收到,感谢您的耐心回复。开始尝试服务器端部署及测试。
再次请教一下,@2881099 如果是发布成exe直接运行,在win10环境下用IP+端口方式运行,能在局域网中直接访问这个websocket服务吗?
同上,存在此问题。 控制台第一次报的400,提示的是账号密码错误。
临时解决办法: 新建一个postgres空数据库,然后再执行迁移就可以了。
`Configure(options => { /* The main point to change your DBMS. * See also DataDictionaryMigrationsDbContextFactory for EF Core tooling. */ options.UseKdbndp(b => { b.MigrationsHistoryTable("__DataDictionary_Migrations"); b.UseAdminDatabase("kingbase"); }); });` b.UseAdminDatabase("kingbase"); 或是在配置数据库上下文时增加这句?