-
Notifications
You must be signed in to change notification settings - Fork 15
Description
I've set up a Riak cluster running in docker(compose) using the instructions from here and here. I've built a small application in Kotlin using the Java library that can connect to the cluster and store and retrieve values. This works perfectly!
The only problem is that when I open Riak Explorer, no matter what I do, I can't see any buckets. Here is what I'm doing:
I open the admin panel and click 'data' and I select the 'default' bucket type. At this point I can see 3 HTTP errors in my javascript console console
Request URL: http://localhost:8098/admin/riak/clusters/default/search/index
Request Method: GET
Status Code: 404 Object Not Found
Response Content:
<HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD><BODY><H1>Not Found</H1>The requested document was not found on this server.<P><HR><ADDRESS>mochiweb+webmachine web server</ADDRESS></BODY></HTML>
This error shows up once
Request URL: http://localhost:8098/admin/explore/clusters/default/bucket_types/default/buckets?start=1&rows=500
Request Method: GET
Status Code: 500 Internal Server Error
Response Content:
{"error":"enoent"}This error shows up twice. If I try to refresh the cash list nothing happens, if I try to create a bucket manually nothing happens either.
Is there any one that can point me in the right direction or help me figure this out. I'm running docker on OSX, not sure if that matters. This problem shouldn't be hard to reproduce!