Apache Geode 更改文件规范 博客分类: 框架Apache Geode Apache Geode
程序员文章站
2024-03-15 09:25:17
...
你可以在命令行中修改gemfire.properties文件中的所有规范。
注意: Geode应用可以使用应用程序接口将java.lang.System属性传用到分布式系统连接。
这种文件规范更改是
在命令行中或是gemfire.properties完成的。你可以在应用启动记录的配置信息中校验应用的属性设置。当
gemfire.properties
log-level被设为
config
或更低时,配置列表如下:
此应用程序的调用,testApplication.TestApp1为
cache.xml
和 gemfire.properties
供了非默认规范
java -Dgemfire.cache-xml-file= /gemfireSamples/examples/dist/cacheRunner/queryPortfolios.xml -DgemfirePropertyFile=defaultConfigs/gemfire.properties testApplication.TestApp1
这个gfsh启动服务器命令可以使用相同的规范:
gfsh>start server -J-Dgemfire.cache-xml-file=/gemfireSamples/examples/dist/cacheRunner/queryPortfolios.xml -J-DgemfirePropertyFile=defaultConfigs/gemfire.properties
你也可以在gemfire.properties
文件里面为cache.xml
更改规范。
注意: gemfire.properties里面的规范不能使用系统参数。例如带着非默认
cache.xml的
gemfire.properties文件:
#Tue May 09 17:53:54 PDT 2006 mcast-address=192.0.2.0 mcast-port=10333 locators= cache-xml-file=/gemfireSamples/examples/dist/cacheRunner/queryPortfolios.xml