hadoop-policy.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  3. <!--
  4. Licensed to the Apache Software Foundation (ASF) under one or more
  5. contributor license agreements. See the NOTICE file distributed with
  6. this work for additional information regarding copyright ownership.
  7. The ASF licenses this file to You under the Apache License, Version 2.0
  8. (the "License"); you may not use this file except in compliance with
  9. the License. You may obtain a copy of the License at
  10. http://www.apache.org/licenses/LICENSE-2.0
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <!-- Put site-specific property overrides in this file. -->
  18. <configuration>
  19. <property>
  20. <name>security.client.protocol.acl</name>
  21. <value>*</value>
  22. <description>ACL for ClientProtocol, which is used by user code
  23. via the DistributedFileSystem.
  24. The ACL is a comma-separated list of user and group names. The user and
  25. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  26. A special value of "*" means all users are allowed.</description>
  27. </property>
  28. <property>
  29. <name>security.client.datanode.protocol.acl</name>
  30. <value>*</value>
  31. <description>ACL for ClientDatanodeProtocol, the client-to-datanode protocol
  32. for block recovery.
  33. The ACL is a comma-separated list of user and group names. The user and
  34. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  35. A special value of "*" means all users are allowed.</description>
  36. </property>
  37. <property>
  38. <name>security.datanode.protocol.acl</name>
  39. <value>*</value>
  40. <description>ACL for DatanodeProtocol, which is used by datanodes to
  41. communicate with the namenode.
  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. <property>
  47. <name>security.inter.datanode.protocol.acl</name>
  48. <value>*</value>
  49. <description>ACL for InterDatanodeProtocol, the inter-datanode protocol
  50. for updating generation timestamp.
  51. The ACL is a comma-separated list of user and group names. The user and
  52. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  53. A special value of "*" means all users are allowed.</description>
  54. </property>
  55. <property>
  56. <name>security.namenode.protocol.acl</name>
  57. <value>*</value>
  58. <description>ACL for NamenodeProtocol, the protocol used by the secondary
  59. namenode to communicate with the namenode.
  60. The ACL is a comma-separated list of user and group names. The user and
  61. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  62. A special value of "*" means all users are allowed.</description>
  63. </property>
  64. <property>
  65. <name>security.inter.tracker.protocol.acl</name>
  66. <value>*</value>
  67. <description>ACL for InterTrackerProtocol, used by the tasktrackers to
  68. communicate with the jobtracker.
  69. The ACL is a comma-separated list of user and group names. The user and
  70. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  71. A special value of "*" means all users are allowed.</description>
  72. </property>
  73. <property>
  74. <name>security.job.submission.protocol.acl</name>
  75. <value>*</value>
  76. <description>ACL for JobSubmissionProtocol, used by job clients to
  77. communciate with the jobtracker for job submission, querying job status etc.
  78. The ACL is a comma-separated list of user and group names. The user and
  79. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  80. A special value of "*" means all users are allowed.</description>
  81. </property>
  82. <property>
  83. <name>security.task.umbilical.protocol.acl</name>
  84. <value>*</value>
  85. <description>ACL for TaskUmbilicalProtocol, used by the map and reduce
  86. tasks to communicate with the parent tasktracker.
  87. The ACL is a comma-separated list of user and group names. The user and
  88. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  89. A special value of "*" means all users are allowed.</description>
  90. </property>
  91. <property>
  92. <name>security.refresh.policy.protocol.acl</name>
  93. <value>${user.name}</value>
  94. <description>ACL for RefreshAuthorizationPolicyProtocol, used by the
  95. dfsadmin and mradmin commands to refresh the security policy in-effect.
  96. The ACL is a comma-separated list of user and group names. The user and
  97. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  98. A special value of "*" means all users are allowed.</description>
  99. </property>
  100. <property>
  101. <name>security.ha.service.protocol.acl</name>
  102. <value>*</value>
  103. <description>ACL for HAService protocol used by HAAdmin to manage the
  104. active and stand-by states of namenode.</description>
  105. </property>
  106. </configuration>