我已经在其中一个服务器环境中安装并配置了 RavenDB。(Windows 2012)我需要保护 Ravendb Studio,因此创建了自签名证书并应用了 settings.json 中的更改,如下所示
{
"ServerUrl": "https://11.135.25.16:12345",
"Setup.Mode": "None",
"Security.UnsecuredAccessAllowed":"PrivateNetwork",
"License.Eula.Accepted": true,
"Security.Certificate": {
"Path": "cloud16_company_com.pfx",
"Password": "123456789"
},
}
一旦 RavenDB 启动,它看起来不错,并且在给定的 URL 上运行。但是当我使用 Internet Explorer 或 chrome 浏览时,它显示“发生身份验证错误”。
谢谢