How do I check default credentials to login in anzograph for the first time?

249 Views Asked by At

I have installed Anzograph via Docker in a Mac OS X, but I can not login to the admin console, I need default(?) login and password

3

There are 3 best solutions below

0
On

username: admin

password: Passw0rd1

0
On

If you dont change them, these are the defaults.

ui_admin_user="admin" ui_admin_password="Passw0rd1"

ui_query_user="query" ui_query_user_password="Passw0rd2"

grpc_admin_user="admin" grpc_admin_password="Passw0rd1"

grpc_query_user="query" grpc_query_user_password="Passw0rd2

0
On

The docker images (AnzoGraph all-in-one, AnzoGraph Frontend, AnzoGraph DB) provide default values to make it as simple as possible to give a spin.

The images use:

ui_admin_user="admin"
ui_admin_password="Passw0rd1"
ui_query_user="query"
ui_query_user_password="Passw0rd2"
grpc_admin_user="admin"
grpc_admin_password="Passw0rd1"
grpc_query_user="query"
grpc_query_user_password="Passw0rd2"

as default.

However, we highly recommend using kubernetes for any serious use case. The AnzoGraph helm chart allows you to fully control the activation while deploying a single AnzoGraph DB node or an AnzoGraph DB cluster targeting for example Docker Desktop for Mac (using sufficient resources for the underlying VM and enabled kubernetes).

With activation we refer to boot-strap configuration of an application, so you can use it without manual configuration. In the case of helm managed (kubernetes) releases you define your property values in a values.yaml file you use at deployment time.

Please note, that we have not been able to certify minikube as of yet, but once minikube PR 7349 is integrated in one of the next minikube releases, we plan to look into it again.

For use cases using AnzoGraph in production, we offer a AnzoGraph as managed (kubernetes-custom-resources) with the anzograph operator.