[
https://issues.apache.org/jira/browse/HBASE-21048?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16719493#comment-16719493
]
Wei-Chiu Chuang commented on HBASE-21048:
-----------------------------------------
Hey Nihal, that's exactly what I was trying to do. But straightforwardly apply
HADOOP-12847 didn't work. The Level in HBase and Hadoop have diverged quite a
lot. It'll take some surgery to get right, especially regarding SPENGO and
Kerberos. I'd still like to work on it.
In the mean time, the quickest workaround would to download a more recent
version of Hadoop binary, and use the hadoop daemonlog command there.
> Get LogLevel is not working from console in secure environment
> --------------------------------------------------------------
>
> Key: HBASE-21048
> URL: https://issues.apache.org/jira/browse/HBASE-21048
> Project: HBase
> Issue Type: Bug
> Reporter: Chandra Sekhar
> Priority: Major
>
> When we try to get log level of specific package in secure environment,
> getting SocketException.
> {code:java}
> hbase/master/bin# ./hbase org.apache.hadoop.hbase.http.log.LogLevel -getlevel
> host-xxxx:16010 org.apache.hadoop.hbase
> Connecting to http://host-xxxx:16010/logLevel?log=org.apache.hadoop.hbase
> java.net.SocketException: Unexpected end of file from server
> {code}
> It is trying to connect http instead of httpsÂ
> code snippet that handling only http in *LogLevel.java*
> {code:java}
> public static void main(String[] args) {
> if (args.length == 3 && "-getlevel".equals(args[0])) {
> process("http://" + args[1] + "/logLevel?log=" + args[2]);
> return;
> }
> else if (args.length == 4 && "-setlevel".equals(args[0])) {
> process("http://" + args[1] + "/logLevel?log=" + args[2]
> + "&level=" + args[3]);
> return;
> }
> System.err.println(USAGES);
> System.exit(-1);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)