mindsdb
mindsdb copied to clipboard
Need clarification - Local instance of mindsdb with auth
I ran a local instance of mindsdb with the command:
docker run --name mindsdb_container \
-e MINDSDB_APIS=http \
-e MINDSDB_USERNAME='admin' \
-e MINDSDB_PASSWORD='password' \
-p 47334:47334 \
mindsdb/mindsdb
And I went to http://127.0.0.1:47334 in my web browser. Then I saw a login form and when i submitted it, it made a POST request to http://127.0.0.1:47334/cloud/login, returning "Method Not Allowed". Can't use the UI when auth is active in local installation?