Skip to content
immudb docker run -d --net host -it --name immudb codenotary/immudb:latest

Users

CREATE USER#

Users can be created with the CREATE USER statement as follows:

1CREATE USER user1 WITH PASSWORD 'user1Password!' READWRITE;

Possible permissions are: READ, READWRITE and ADMIN.

An admin user is able to fully manage the current database.

ALTER USER#

User password and permissions can be modified with the ALTER USER statement as follows:

1ALTER USER user1 WITH PASSWORD 'newUser1Password!' ADMIN;

DROP USER#

An existing user can be deleted. Deletion is logically done and the user can be reactivated by executing an ALTER USER statement.

1DROP USER user1;
Edit this page on GitHub Last updated