是的,当使用ActiveMQ Artemis进行高可用性配置时,您应该在每个节点上分别创建用户和角色。这是由于节点之间需要同步这些信息以保持一致性。以下是使用命令行界面(CLI)在每个节点上创建用户和角色的示例:
./artemis user@host1,host2,host3
create role test_role
create user test_user with password 'test_password' roles 'test_role'
注意:在以上示例中,用户的角色名称为'test_role”,用户名为'test_user”,密码为'test_password”。您可以根据自己的需求进行更改。