mgmt-users.properties
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# Properties declaration of users for the realm 'ManagementRealm' which is the default realm
# for new installations. Further authentication mechanism can be configured
# as part of the <management /> in standalone.xml.
#
# Users can be added to this properties file at any time, updates after the server has started
# will be automatically detected.
#
# By default the properties realm expects the entries to be in the format: -
# username=HEX( MD5( username ':' realm ':' password))
#
# A utility script is provided which can be executed from the bin folder to add the users: -
# - Linux
# bin/add-user.sh
#
# - Windows
# bin\add-user.bat
#
#$REALM_NAME=ManagementRealm$ This line is used by the add-user utility to identify the realm name already used in this file.
#
# On start-up the server will also automatically add a user $local - this user is specifically
# for local tools running against this AS installation.
#
# The following illustrates how an admin user could be defined, this
# is for illustration only and does not correspond to a usable password.
#
# Usuarios de Test
{% if inventory_hostname.startswith('t') %}
admin=c06ba95adae374bc766be220fad6cc0a
devcodium=dae58724eeb3a075ed0f1328baaf7412
dtrevisan=4cfe1609b4f882d9d5df167201b5f8f3
earce=eab2990cd53ae5660f68b8031a9087b2
data=38d49bf344d1404f2b43a7981e888bfd
{% endif %}
# Usuarios de Produccion
{% if inventory_hostname.startswith('p') %}
admin=c06ba95adae374bc766be220fad6cc0a
devcodium=dae58724eeb3a075ed0f1328baaf7412
dtrevisan=4cfe1609b4f882d9d5df167201b5f8f3
earce=eab2990cd53ae5660f68b8031a9087b2
data=38d49bf344d1404f2b43a7981e888bfd
{% endif %}