source: proiecte/HadoopJUnit/hadoop-0.20.1/src/test/hadoop-policy.xml @ 141

Last change on this file since 141 was 120, checked in by (none), 14 years ago

Added the mail files for the Hadoop JUNit Project

  • Property svn:executable set to *
File size: 4.1 KB
Line 
1<?xml version="1.0"?>
2<?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
3
4<!-- Put site-specific property overrides in this file. -->
5
6<configuration>
7  <property>
8    <name>security.client.protocol.acl</name>
9    <value>*</value>
10    <description>ACL for ClientProtocol, which is used by user code
11    via the DistributedFileSystem.
12    The ACL is a comma-separated list of user and group names. The user and
13    group list is separated by a blank. For e.g. "alice,bob users,wheel".
14    A special value of "*" means all users are allowed.</description>
15  </property>
16
17  <property>
18    <name>security.client.datanode.protocol.acl</name>
19    <value>*</value>
20    <description>ACL for ClientDatanodeProtocol, the client-to-datanode protocol
21    for block recovery.
22    The ACL is a comma-separated list of user and group names. The user and
23    group list is separated by a blank. For e.g. "alice,bob users,wheel".
24    A special value of "*" means all users are allowed.</description>
25  </property>
26
27  <property>
28    <name>security.datanode.protocol.acl</name>
29    <value>*</value>
30    <description>ACL for DatanodeProtocol, which is used by datanodes to
31    communicate with the namenode.
32    The ACL is a comma-separated list of user and group names. The user and
33    group list is separated by a blank. For e.g. "alice,bob users,wheel".
34    A special value of "*" means all users are allowed.</description>
35  </property>
36
37  <property>
38    <name>security.inter.datanode.protocol.acl</name>
39    <value>*</value>
40    <description>ACL for InterDatanodeProtocol, the inter-datanode protocol
41    for updating generation timestamp.
42    The ACL is a comma-separated list of user and group names. The user and
43    group list is separated by a blank. For e.g. "alice,bob users,wheel".
44    A special value of "*" means all users are allowed.</description>
45  </property>
46
47  <property>
48    <name>security.namenode.protocol.acl</name>
49    <value>*</value>
50    <description>ACL for NamenodeProtocol, the protocol used by the secondary
51    namenode to communicate with the namenode.
52    The ACL is a comma-separated list of user and group names. The user and
53    group list is separated by a blank. For e.g. "alice,bob users,wheel".
54    A special value of "*" means all users are allowed.</description>
55  </property>
56
57  <property>
58    <name>security.inter.tracker.protocol.acl</name>
59    <value>*</value>
60    <description>ACL for InterTrackerProtocol, used by the tasktrackers to
61    communicate with the jobtracker.
62    The ACL is a comma-separated list of user and group names. The user and
63    group list is separated by a blank. For e.g. "alice,bob users,wheel".
64    A special value of "*" means all users are allowed.</description>
65  </property>
66
67  <property>
68    <name>security.job.submission.protocol.acl</name>
69    <value>*</value>
70    <description>ACL for JobSubmissionProtocol, used by job clients to
71    communciate with the jobtracker for job submission, querying job status etc.
72    The ACL is a comma-separated list of user and group names. The user and
73    group list is separated by a blank. For e.g. "alice,bob users,wheel".
74    A special value of "*" means all users are allowed.</description>
75  </property>
76
77  <property>
78    <name>security.task.umbilical.protocol.acl</name>
79    <value>*</value>
80    <description>ACL for TaskUmbilicalProtocol, used by the map and reduce
81    tasks to communicate with the parent tasktracker.
82    The ACL is a comma-separated list of user and group names. The user and
83    group list is separated by a blank. For e.g. "alice,bob users,wheel".
84    A special value of "*" means all users are allowed.</description>
85  </property>
86
87  <property>
88    <name>security.refresh.policy.protocol.acl</name>
89    <value>${user.name}</value>
90    <description>ACL for RefreshAuthorizationPolicyProtocol, used by the
91    dfsadmin and mradmin commands to refresh the security policy in-effect.
92    The ACL is a comma-separated list of user and group names. The user and
93    group list is separated by a blank. For e.g. "alice,bob users,wheel".
94    A special value of "*" means all users are allowed.</description>
95  </property>
96
97</configuration>
Note: See TracBrowser for help on using the repository browser.