0

How can I set the password for a non-enterprise instance of Memgraph? I'm using community edition. I'm not looking for role-based access control. I'd just like to have at least some level of protection.

KWriter
  • 1,024
  • 4
  • 22

1 Answers1

0

Basic authentication is supported in the non-enterprise version.

You can create a password-protected account with the following query:

CREATE USER user_name [IDENTIFIED BY 'password'];

For example:

CREATE USER kwriter IDENTIFIED BY '8LJBhbu26d';
KWriter
  • 1,024
  • 4
  • 22