non-JRMP server at remote endpoint

我是研究僧i 提交于 2020-01-07 05:40:39

问题


I am trying to figure out how to use Oracle nosql. I have downloaded and installed version 4.3.11 (with examples). I have started kvlite both with default params and with the following:
java -jar lib/kvstore.jar kvlite -port 5000 -root kvroot -host

When I run the examples as described at https://docs.oracle.com/cd/E26161_02/html/GettingStartedGuide/verifykvlite.html, exceptions are thrown. Unfortunately, I cannot post the stacktrace as it is on another server that is not accessible from here.

Some of the errors are:
Could not contact any RepNode at: [localhost:5000]
non-JRMP server at remote endpoint

Any assistance would be appreciated.
-Raymond


回答1:


I suspect you are trying to connect to a secured store without specifying the secured connection parameters. Oracle NoSQL has enabled security by default. The simplest thing you can try is to start kvlite with security disabled.

java -Xmx256m -Xms256m -jar KVHOME/lib/kvstore.jar kvlite -secure-config disable

also, I noticed you were looking at docs for older version. The latest NoSQL is now 4.4.6 and the docs are breathing here - http://docs.oracle.com/cd/NOSQL/html/GettingStartedGuide/kvlite-usage.html

HTH,



来源:https://stackoverflow.com/questions/43665179/non-jrmp-server-at-remote-endpoint

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!