Member since
05-21-2018
47
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1703 | 09-10-2018 01:18 AM |
12-17-2020
06:52 PM
Hello @prabhat10 , Try this - Backup your /etc/krb5.conf on all the hosts Verify the encryption types supported from your Kerberos server (If MIT - Check "supported_enctypes" in /var/kerberos/krb5kdc/) Check the "Kerberos Encryption Types" under CM > Administration > Security > Kerberos Credentials > Configuration. Include the encryption types supported by your KDC. Enable "Manage krb5.conf through Cloudera Manager" from the same configuration page. Select "Deploy Kerberos client configuration" from the drop-down near your cluster. Once deployed, verify if the krb5.conf on the agent nodes have the encryption types included as mentioned in CM. If CM server is running on stale kerberos configuration, copy the krb5.conf from one of the agent nodes to CM server. Regenerate the principals from CM. (If this is success, you should be able to restart CM and CDH services).
... View more
11-25-2020
02:34 AM
@ni4ni mentions, There is no standby/secondary NN.
... View more
09-11-2019
07:04 PM
I had the same issue on one of the node and it was related with /etc/resolv.conf entry. Changed the nameserver details to that of other nodes and that fixed it.
... View more
03-06-2019
02:03 AM
Hello @prabhat10, From your description, following are the assumptions: cm1 = node1 haproxy and hs2 are on same host There is a limitation in your environment haproxy and hs2 can't be on different host. If above assumption is right then you can change the thrift port and share your observations. Hope that helps.
... View more
02-14-2019
02:18 AM
@AmitAdhau Could you kindly help me out with steps to deploy tls using self-signed certificate.
... View more
01-31-2019
09:57 PM
could you share the steps fo jce policy file i have install in /usr/java/jdk1.8.0_171/jre/bin/security/US_export_policy.jar /usr/java/jdk1.8.0_171/jre/bin/security/local_policy.jar
... View more
10-09-2018
09:04 AM
1 Kudo
Setting the cron job will take this particular error away but eventually, you are bound to run into a lot of other issues. Feel free to try though. Also, let me know your experience after trying that 🙂
... View more
07-26-2018
12:13 AM
Thanks @bgooley Its running now. I have installed the hbase again and itts working fine now. Thanks for support.
... View more
07-26-2018
12:08 AM
I have 3 node cluster and install haproxy on node1. the list of hive services running on my node 1 are : Metastore server, Webcat server, and HiveServer2. one instance of hive server2 is running on node 2 and its working fine. But node1 hive server2 is not running and showing this errot: Error starting HiveServer2: could not start ThriftBinaryCLIService
org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:10000.
at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:109)
at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:91)
at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:87)
at org.apache.hadoop.hive.common.auth.HiveAuthUtils.getServerSocket(HiveAuthUtils.java:87)
at org.apache.hive.service.cli.thrift.ThriftBinaryCLIService.run(ThriftBinaryCLIService.java:67)
at java.lang.Thread.run(Thread.java:748)
Caused by: java.net.SocketException: Address already in use (Listen failed)
at java.net.PlainSocketImpl.socketListen(Native Method)
at java.net.AbstractPlainSocketImpl.listen(AbstractPlainSocketImpl.java:399)
at java.net.ServerSocket.bind(ServerSocket.java:376)
at org.apache.thrift.transport.TServerSocket.<init>(TServerSocket.java:106) on cli its showing haproxy is using the port 10000 [root@cm1 singhkabir880]# netstat -tulpn | grep 10000tcp 0 0 0.0.0.0:10000 0.0.0.0:* LISTEN 882/haproxy [root@cm1 singhkabir880]# i have add hive server2 role first then install haproxy service and made below changes in : /etc/haproxy/haproxy.cfg : listen hiveserver2 :10000
#haproxy will listen in port 10000 for hiveserver2 client requests.
mode tcp
option tcplog
balance leastconn
#tcp – connection mode between haproxy to hive servers
#leastconn – requests will be sent to server with less connection
server server1 node1:10000
server server2 node2:10000 What should do i need to order to start newly added hive server2 ? Kindly Suggest.
... View more