~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/libs/jgdi/util/jmxremote.password.template

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#___INFO__MARK_BEGIN__
 
2
###########################################################################
 
3
#  The Contents of this file are made available subject to the terms of
 
4
#  the Sun Industry Standards Source License Version 1.2
 
5
 
6
#  Sun Microsystems Inc., March, 2001
 
7
 
8
 
9
#  Sun Industry Standards Source License Version 1.2
 
10
#  =================================================
 
11
#  The contents of this file are subject to the Sun Industry Standards
 
12
#  Source License Version 1.2 (the "License"); You may not use this file
 
13
#  except in compliance with the License. You may obtain a copy of the
 
14
#  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
15
 
16
#  Software provided under this License is provided on an "AS IS" basis,
 
17
#  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
18
#  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
19
#  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
20
#  See the License for the specific provisions governing your rights and
 
21
#  obligations concerning the Software.
 
22
 
23
#  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
24
 
25
#  Copyright: 2006 by Sun Microsystems, Inc
 
26
 
27
#  All Rights Reserved.
 
28
 
29
###########################################################################
 
30
#___INFO__MARK_END__
 
31
#
 
32
# ----------------------------------------------------------------------
 
33
#           Template for jmxremote.password
 
34
#
 
35
# o Copy this template to jmxremote.password
 
36
# o Set the user/password entries in jmxremote.password
 
37
# o Change the permission of jmxremote.password to read-only
 
38
#   by the owner.
 
39
#
 
40
# See below for the location of jmxremote.password file.
 
41
# ----------------------------------------------------------------------
 
42
 
 
43
##############################################################
 
44
#        Password File for Remote JMX Monitoring
 
45
##############################################################
 
46
#
 
47
# Password file for Remote JMX API access to monitoring.  This
 
48
# file defines the different roles and their passwords.  The access
 
49
# control file (jmxremote.access by default) defines the allowed
 
50
# access for each role.  To be functional, a role must have an entry
 
51
# in both the password and the access files.
 
52
#
 
53
# Default location of this file is $JRE/lib/management/jmxremote.password
 
54
# You can specify an alternate location by specifying a property in 
 
55
# the management config file $JRE/lib/management/management.properties
 
56
# or by specifying a system property (See that file for details).
 
57
 
 
58
 
 
59
##############################################################
 
60
#    File permissions of the jmxremote.password file
 
61
##############################################################
 
62
#      Since there are cleartext passwords stored in this file,
 
63
#      this file must be readable by ONLY the owner,
 
64
#      otherwise the program will exit with an error. 
 
65
#
 
66
# The file format for password and access files is syntactically the same
 
67
# as the Properties file format.  The syntax is described in the Javadoc
 
68
# for java.util.Properties.load.
 
69
# Typical password file has multiple  lines, where each line is blank,
 
70
# a comment (like this one), or a password entry.
 
71
#
 
72
#
 
73
# A password entry consists of a role name and an associated
 
74
# password.  The role name is any string that does not itself contain
 
75
# spaces or tabs.  The password is again any string that does not
 
76
# contain spaces or tabs.  Note that passwords appear in the clear in
 
77
# this file, so it is a good idea not to use valuable passwords.
 
78
#
 
79
# A given role should have at most one entry in this file.  If a role
 
80
# has no entry, it has no access.
 
81
# If multiple entries are found for the same role name, then the last one
 
82
# is used.
 
83
#
 
84
# In a typical installation, this file can be read by anybody on the
 
85
# local machine, and possibly by people on other machines.
 
86
# For # security, you should either restrict the access to this file,
 
87
# or specify another, less accessible file in the management config file
 
88
# as described above.
 
89
#
 
90
# Following are two commented-out entries.  The "measureRole" role has
 
91
# password "QED".  The "controlRole" role has password "R&D".
 
92
#
 
93
monitorRole  QED
 
94
controlRole  R&D
 
95
 
 
96