Member since
03-14-2016
4721
Posts
1111
Kudos Received
874
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 2528 | 04-27-2020 03:48 AM | |
| 4995 | 04-26-2020 06:18 PM | |
| 4089 | 04-26-2020 06:05 PM | |
| 3299 | 04-13-2020 08:53 PM | |
| 5039 | 03-31-2020 02:10 AM |
03-27-2017
08:56 AM
@Pranav Manwatkar What is the setting you have in your yarn-site for the "yarn.admin.acl" ? <property>
<name>yarn.admin.acl</name>
<value>yarn,dr.who</value>
</property> .
... View more
03-27-2017
08:29 AM
@zkfs Yes, those permissions should be 744 as mentioned in the previously shared article (Exampel # chmod 744 /etc/pam.d/passwd) : https://community.hortonworks.com/content/supportkb/48753/how-to-use-pam-for-hiveserver2-authentication.html Need to provide execute permission of "/etc/pam.d/passwd" (744) to the root user or the super user used to start hive server2.
Also provide read execute permission of /etc/passwd and /etc/shadow (744) to the root user or the super user used to start hiveserver2 (e.g. user hive)
... View more
03-27-2017
03:51 AM
@Brendan Smith
Also please check if you have installed the following packages on your ambari server? yum install krb5-server krb5-libs krb5-workstation
Specially the "krb5-workstation" or "krb5-devel" which contains the "kadmin" utility on the ambari-server host.
... View more
03-27-2017
03:51 AM
@Brendan Smith
When you get the above mentioned error in the ambari UI, do you see a complete stackTrace of the error in detail inside the "/var/log/ambari-server/ambari-server.log". Can you please post that error here?
... View more
03-27-2017
03:46 AM
1 Kudo
@darkz yu
Can you try to start the newly added flume agent using the Ambari APIs? Example: curl -u admin:admin -H "X-Requested-By: ambari" -d '{"RequestInfo":{"context":"Starting Flume agent","flume_handler":"agent","operation_level": {"level":"HOST_COMPONENT","cluster_name":"Cluster","service_name":"FLUME","host_name":"${hostname_of_new_flume_agent}"}},"Body":{"HostRoles":{"state":"STARTED"}}}' -X PUT "http://${AMBARI_HOST}:8080/api/v1/clusters/${CLUSTER_NAME}/hosts/${hostname_of_new_flume_agent}/host_components/FLUME_HANDLER" . Please replace the values present inside the ${} according to your environment.
... View more
03-27-2017
12:43 AM
@Derrick Lin The HBase Master will use the FQDN (the output of the following command) and use this to bind to the interface configured for the node hostname. # hostname -f . In situations where your HBase master node has two network interfaces, HBase will use the interfaces that resolves for the OS hostname. If you wish to use the hostname of the second interface then you can use the following property. We can override this with and entry in hbase-site by adding the following property: hbase.master.hostname=<hostname> .
... View more
03-27-2017
12:13 AM
@Ai Here are some very good reference points/blogs on GC : Links: 0. http://middlewaremagic.com/weblogic/?p=5131 1. https://dzone.com/articles/understanding-garbage-collection-log 2. https://blogs.oracle.com/poonam/entry/understanding_g1_gc_logs (G1 GC) 3. https://blogs.oracle.com/poonam/entry/understanding_cms_gc_logs (CMS) 4. https://blog.tier1app.com/2016/04/06/gc-logging-user-sys-real-which-time-to-use/ 5. https://plumbr.eu/java-garbage-collection-handbook 6. http://www.oracle.com/technetwork/java/javase/gc-tuning-6-140523.html . Tools : Following is the link where you can upload your GC log and have it parsed in just few seconds and get a report. 1. http://gceasy.io/ (Online means internet access is needed for this utility) 2. https://sourceforge.net/projects/gcviewer/ (Offline) 3. https://code.google.com/archive/a/eclipselabs.org/p/garbagecat (Offline .
... View more
03-26-2017
05:33 AM
@zkfs Please refer to the following article to validate your PAM configuration: https://community.hortonworks.com/content/supportkb/48753/how-to-use-pam-for-hiveserver2-authentication.html Still if you face any issue then please share the hive configs. HiveServer2 log (with complete stackTrace) and verify if your passwd file has correct permission and is in correct format. .
... View more
03-26-2017
04:11 AM
1 Kudo
@zkfs
First you should install the following dependency packages: yum install -y numactl perl-DBI postfix - MySQL community RPM repo: http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/ You can try the following steps: yum install -y numactl perl-DBI postfix
/bin/cp -f RPM-GPG-KEY-mysql /etc/pki/rpm-gpg/
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
rpm -e --nodeps mysql-libs-5.1.73-5.el6_6.x86_64
# from this url to download the package
# Version: 5.6 http://repo.mysql.com/yum/mysql-5.6-community/el/6/x86_64/
rpm -Uvh --force mysql-community-common-5.6.35-2.el6.x86_64.rpm
rpm -Uvh --force mysql-community-libs-5.6.35-2.el6.x86_64.rpm
rpm -Uvh --force mysql-community-libs-compat-5.6.35-2.el6.x86_64.rpm
rpm -Uvh --force mysql-community-client-5.6.35-2.el6.x86_64.rpm
rpm -Uvh --force mysql-community-server-5.6.35-2.el6.x86_64.rpm
service mysqld start . Also please refer to: https://github.com/YazaiHu/mysql56-community-install-rpm (install.sh) script.
... View more
03-25-2017
02:14 PM
1 Kudo
@Eun-seop Yu
Are you able to bring up your cluster?
... View more