hbase-policy.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0"?>
  2. <?xml-stylesheet type="text/xsl" href="configuration.xsl"?>
  3. <!--
  4. /**
  5. * Licensed to the Apache Software Foundation (ASF) under one
  6. * or more contributor license agreements. See the NOTICE file
  7. * distributed with this work for additional information
  8. * regarding copyright ownership. The ASF licenses this file
  9. * to you under the Apache License, Version 2.0 (the
  10. * "License"); you may not use this file except in compliance
  11. * with the License. You may obtain a copy of the License at
  12. *
  13. * http://www.apache.org/licenses/LICENSE-2.0
  14. *
  15. * Unless required by applicable law or agreed to in writing, software
  16. * distributed under the License is distributed on an "AS IS" BASIS,
  17. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18. * See the License for the specific language governing permissions and
  19. * limitations under the License.
  20. */
  21. -->
  22. <configuration>
  23. <property>
  24. <name>security.client.protocol.acl</name>
  25. <value>*</value>
  26. <description>ACL for ClientProtocol and AdminProtocol implementations (ie.
  27. clients talking to HRegionServers)
  28. The ACL is a comma-separated list of user and group names. The user and
  29. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  30. A special value of "*" means all users are allowed.</description>
  31. </property>
  32. <property>
  33. <name>security.admin.protocol.acl</name>
  34. <value>*</value>
  35. <description>ACL for HMasterInterface protocol implementation (ie.
  36. clients talking to HMaster for admin operations).
  37. The ACL is a comma-separated list of user and group names. The user and
  38. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  39. A special value of "*" means all users are allowed.</description>
  40. </property>
  41. <property>
  42. <name>security.masterregion.protocol.acl</name>
  43. <value>*</value>
  44. <description>ACL for HMasterRegionInterface protocol implementations
  45. (for HRegionServers communicating with HMaster)
  46. The ACL is a comma-separated list of user and group names. The user and
  47. group list is separated by a blank. For e.g. "alice,bob users,wheel".
  48. A special value of "*" means all users are allowed.</description>
  49. </property>
  50. </configuration>