[jira] [Updated] (HBASE-28496) Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not taking effect

2024-04-12 Thread ziyang (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-28496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ziyang updated HBASE-28496:
---
Fix Version/s: (was: 2.4.15)

> Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not 
> taking effect
> -
>
> Key: HBASE-28496
> URL: https://issues.apache.org/jira/browse/HBASE-28496
> Project: HBase
>  Issue Type: Bug
>  Components: Zookeeper
>Affects Versions: 2.4.15
>Reporter: ziyang
>Priority: Major
> Attachments: HBASE-28496.patch
>
>
> When executing the "hbase-cleanup.sh --cleanAcls" command, it was noticed 
> that the ACL permissions of nodes in ZooKeeper did not change. The reason is 
> that in the hbase-cleanup.sh script, the contents of the execute_clean_acls 
> method are as follows:
>  
> {code:java}
> execute_clean_acls() { 
>   command=$1; "$bin"/hbase org.apache.hadoop.hbase.zookeeper.ZkAclReset 
> $command 2>&1 
> } {code}
> The corresponding type in the "hbase-zookeeper" module should be 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset", so it is necessary to change 
> "org.apache.hadoop.hbase.zookeeper.ZkAclReset" to 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset" in the "execute_clean_acls" 
> method.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HBASE-28496) Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not taking effect

2024-04-10 Thread ziyang (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-28496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ziyang updated HBASE-28496:
---
Attachment: (was: HBASE-28496-1.patch)

> Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not 
> taking effect
> -
>
> Key: HBASE-28496
> URL: https://issues.apache.org/jira/browse/HBASE-28496
> Project: HBase
>  Issue Type: Bug
>  Components: Zookeeper
>Affects Versions: 2.4.15
>Reporter: ziyang
>Priority: Major
> Fix For: 2.4.15
>
> Attachments: HBASE-28496.patch
>
>
> When executing the "hbase-cleanup.sh --cleanAcls" command, it was noticed 
> that the ACL permissions of nodes in ZooKeeper did not change. The reason is 
> that in the hbase-cleanup.sh script, the contents of the execute_clean_acls 
> method are as follows:
>  
> {code:java}
> execute_clean_acls() { 
>   command=$1; "$bin"/hbase org.apache.hadoop.hbase.zookeeper.ZkAclReset 
> $command 2>&1 
> } {code}
> The corresponding type in the "hbase-zookeeper" module should be 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset", so it is necessary to change 
> "org.apache.hadoop.hbase.zookeeper.ZkAclReset" to 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset" in the "execute_clean_acls" 
> method.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HBASE-28496) Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not taking effect

2024-04-10 Thread ziyang (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-28496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ziyang updated HBASE-28496:
---
Attachment: HBASE-28496-1.patch
Status: Patch Available  (was: Open)

> Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not 
> taking effect
> -
>
> Key: HBASE-28496
> URL: https://issues.apache.org/jira/browse/HBASE-28496
> Project: HBase
>  Issue Type: Bug
>  Components: Zookeeper
>Affects Versions: 2.4.15
>Reporter: ziyang
>Priority: Major
> Fix For: 2.4.15
>
> Attachments: HBASE-28496.patch
>
>
> When executing the "hbase-cleanup.sh --cleanAcls" command, it was noticed 
> that the ACL permissions of nodes in ZooKeeper did not change. The reason is 
> that in the hbase-cleanup.sh script, the contents of the execute_clean_acls 
> method are as follows:
>  
> {code:java}
> execute_clean_acls() { 
>   command=$1; "$bin"/hbase org.apache.hadoop.hbase.zookeeper.ZkAclReset 
> $command 2>&1 
> } {code}
> The corresponding type in the "hbase-zookeeper" module should be 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset", so it is necessary to change 
> "org.apache.hadoop.hbase.zookeeper.ZkAclReset" to 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset" in the "execute_clean_acls" 
> method.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HBASE-28496) Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not taking effect

2024-04-09 Thread ziyang (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-28496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ziyang updated HBASE-28496:
---
Fix Version/s: 2.4.15

> Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not 
> taking effect
> -
>
> Key: HBASE-28496
> URL: https://issues.apache.org/jira/browse/HBASE-28496
> Project: HBase
>  Issue Type: Bug
>  Components: Zookeeper
>Affects Versions: 2.4.15
>Reporter: ziyang
>Priority: Major
> Fix For: 2.4.15
>
> Attachments: HBASE-28496.patch
>
>
> When executing the "hbase-cleanup.sh --cleanAcls" command, it was noticed 
> that the ACL permissions of nodes in ZooKeeper did not change. The reason is 
> that in the hbase-cleanup.sh script, the contents of the execute_clean_acls 
> method are as follows:
>  
> {code:java}
> execute_clean_acls() { 
>   command=$1; "$bin"/hbase org.apache.hadoop.hbase.zookeeper.ZkAclReset 
> $command 2>&1 
> } {code}
> The corresponding type in the "hbase-zookeeper" module should be 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset", so it is necessary to change 
> "org.apache.hadoop.hbase.zookeeper.ZkAclReset" to 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset" in the "execute_clean_acls" 
> method.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HBASE-28496) Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not taking effect

2024-04-07 Thread ziyang (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-28496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ziyang updated HBASE-28496:
---
Attachment: (was: hbase-cleanup.patch)

> Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not 
> taking effect
> -
>
> Key: HBASE-28496
> URL: https://issues.apache.org/jira/browse/HBASE-28496
> Project: HBase
>  Issue Type: Bug
>  Components: Zookeeper
>Affects Versions: 2.4.15
>Reporter: ziyang
>Priority: Major
> Attachments: HBASE-28496.patch
>
>
> When executing the "hbase-cleanup.sh --cleanAcls" command, it was noticed 
> that the ACL permissions of nodes in ZooKeeper did not change. The reason is 
> that in the hbase-cleanup.sh script, the contents of the execute_clean_acls 
> method are as follows:
>  
> {code:java}
> execute_clean_acls() { 
>   command=$1; "$bin"/hbase org.apache.hadoop.hbase.zookeeper.ZkAclReset 
> $command 2>&1 
> } {code}
> The corresponding type in the "hbase-zookeeper" module should be 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset", so it is necessary to change 
> "org.apache.hadoop.hbase.zookeeper.ZkAclReset" to 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset" in the "execute_clean_acls" 
> method.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Updated] (HBASE-28496) Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not taking effect

2024-04-07 Thread ziyang (Jira)


 [ 
https://issues.apache.org/jira/browse/HBASE-28496?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

ziyang updated HBASE-28496:
---
Attachment: HBASE-28496.patch

> Troubleshooting the issue of the "hbase-cleanup.sh --cleanAcls" command not 
> taking effect
> -
>
> Key: HBASE-28496
> URL: https://issues.apache.org/jira/browse/HBASE-28496
> Project: HBase
>  Issue Type: Bug
>  Components: Zookeeper
>Affects Versions: 2.4.15
>Reporter: ziyang
>Priority: Major
> Attachments: HBASE-28496.patch, hbase-cleanup.patch
>
>
> When executing the "hbase-cleanup.sh --cleanAcls" command, it was noticed 
> that the ACL permissions of nodes in ZooKeeper did not change. The reason is 
> that in the hbase-cleanup.sh script, the contents of the execute_clean_acls 
> method are as follows:
>  
> {code:java}
> execute_clean_acls() { 
>   command=$1; "$bin"/hbase org.apache.hadoop.hbase.zookeeper.ZkAclReset 
> $command 2>&1 
> } {code}
> The corresponding type in the "hbase-zookeeper" module should be 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset", so it is necessary to change 
> "org.apache.hadoop.hbase.zookeeper.ZkAclReset" to 
> "org.apache.hadoop.hbase.zookeeper.ZKAclReset" in the "execute_clean_acls" 
> method.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)