Skip to main content

Using Local User Management

If you want to test in a local environment using different users, it makes sense to rely on local instead of external user management.

Configuration

Go to the application-artemis.yml file, and set use-external in the user-management section to false.

src/main/resources/config/application-artemis.yml
artemis:
user-management:
use-external: false
ℹ️

When using local user management, Artemis will manage user accounts internally instead of delegating authentication to an external system like LDAP. This is particularly useful for development and testing environments.