I am starting to study infinispan and infinispan client/server mode. I focus on server mode. I use version 9.4.15. I am successful in launching to server in clustered mode, with following commands :
bin\standalone.bat -Djboss.socket.binding.port-offset=0 -Djboss.node.name=nodeA -c clustered.xml
bin\standalone.bat -Djboss.socket.binding.port-offset=1000 -Djboss.node.name=nodeB -c clustered.xml
I have added an admin user, so I can access my 2 servers web IHM, with http://127.0.0.1:9990 and http://127.0.0.1:10990
Servers see them and I think that they are in same cluster.
Servers are configured (by default) with 2 caches named "Dist" and "Repl" in CacheContainer named "clustered".
My 3 points :
- When trying to open cluster definition, IHM is sticked with a loading icon, No stacktrace or ERROR in log stdOutput. sticked
When trying to insert key in one of Dist or Repl cache from server NodeA, operation return a 401 not authorized ... I don't know how to solve this.
I am successful to user CommandLine Client to access my cluster, but I don't know how to insert something in a cache. I've not found a lot of documentation about it.
Any help would be really appreciated.