From 31ffb205c1921be58b2a50caab7232b4307589e8 Mon Sep 17 00:00:00 2001 From: Dejan Bosanac Date: Fri, 24 Feb 2017 13:40:14 +0100 Subject: [PATCH] [docs] migration guide - authentication --- docs/migration-guide/en/SUMMARY.md | 1 + docs/migration-guide/en/authentication.md | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 docs/migration-guide/en/authentication.md diff --git a/docs/migration-guide/en/SUMMARY.md b/docs/migration-guide/en/SUMMARY.md index 731c94b86c..a0bc705f27 100644 --- a/docs/migration-guide/en/SUMMARY.md +++ b/docs/migration-guide/en/SUMMARY.md @@ -3,4 +3,5 @@ * [Configuration](configuration.md) * [Connectors](connectors.md) * [Destinations](destinations.md) +* [Authentication](authentication.md) * [Legal Notice](notice.md) diff --git a/docs/migration-guide/en/authentication.md b/docs/migration-guide/en/authentication.md new file mode 100644 index 0000000000..35fe08859a --- /dev/null +++ b/docs/migration-guide/en/authentication.md @@ -0,0 +1,22 @@ +Authentication +===================================== + +Now that we have our acceptors and addresses ready, it's time to deal with broker security. Artemis inherited most of the security concepts from ActiveMQ. One of the most notable differences is that ActiveMQ *groups* are now called *roles* in Artemis. Besides that things should be pretty familiar to existing ActiveMQ users. Let's start by looking into the authentication mechanisms and defining users and roles (groups). + + Both ActiveMQ and Artemis use JAAS to define authentication credentials. In ActiveMQ, that's configured through the appropriate broker plugin in `conf/activemq.xml` + + + + + +The name of the JAAS domain is specified as a configuration parameter. + +In Artemis, the same thing is achieved by defining `` configuration in `etc/bootstrap.xml` + + + +From this point on, you can go and define your users and their roles in appropriate files, like `conf/users.properties` and `conf/groups.properties` in ActiveMQ. Similarly, `etc/artemis-users.properties` and `etc/artemis-roles.properties` files are used in Artemis. These files are intechangable, so you should be able to just copy your existing configuration over to the new broker. + +If your deployment is more complicated that this and requires some advanced JAAS configuration, you'll need go and change the `etc/login.config` file. It's important to say that all custom JAAS modules and configuration you were using in ActiveMQ should be compatible with Artemis. + +Finally, in case you're still using ActiveMQ's *Simple Authentication Plugin*, which defines users and groups directly in the broker's xml configuration file, you'll need to migrate to JAAS as Artemis doesn't support the similar concept. \ No newline at end of file