Fuse 6 is no longer supported
As of February 2025, Red Hat Fuse 6 is no longer supported. If you are using Fuse 6, please upgrade to Red Hat build of Apache Camel.Chapter 4. Adding a Remote Console User
Abstract
The server's remote command console is not configured with a default user. Before you can connect to the server's console remotely, you must add a user to the configuration.
Important
The information in this file is unencrypted so it is not suitable for environments that require strict security.
To add a user:
- Open
InstallDir/etc/users.properties
in your favorite text editor. - Locate the line
#admin=admin,admin
.This line specifies a useradmin
with the passwordadmin
and the roleadmin
. - Remove the leading
#
to uncomment the line. - Replace the first
admin
with a name for the user. - Replace
admin
with the password for the user. - Leave the last
admin
as is, and save the changes. - To access the container's JMX port and to use the ActiveMQ Web console, you must specify the credentials for them. To do so, open
InstallDir/etc/system.properties
in your favorite text editor and search for the following lines:Authentication - must match an entry in users.properties with the admin privilege
# # Authentication - must match an entry in users.properties with the admin privilege # #activemq.jmx.user=admin #activemq.jmx.password=admin
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Uncomment theactivemq.jmx.user=admin
andactivemq.jmx.password=admin
settings (by removing the leading#
) and change the username and password values to the same username and password values you just defined in theetc/users.properties
file.