Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
RavenDB 的服务器(构建 2330 和 2380)似乎忽略了 --config 参数:
Raven.Server.exe --config=another.config
该功能已被建议、确认和实施。配置文件的位置有什么限制吗?
特别是,除非我覆盖现有的配置文件 Raven.Server.exe.config,而不是使用命令行选项指定新的配置文件,否则我什至无法更改端口号。
我们用来获取配置的方法似乎有些奇怪。此命令行参数不适用于 2.0 版本。这将在 2.5 中修复
同时,您可以使用以下方法显式设置值:
Raven.Server.exe --set=Raven/Port==9999
注意第一个相等重复一次,第二个重复两次。