Member since
07-29-2016
14
Posts
5
Kudos Received
0
Solutions
06-09-2021
09:25 AM
I had a similar issue. You may want to check Ranger > Audit > Plugin Status to see if the policy is being applied. If it's not it may be that you have a jersey-client classpath conflict. More details here: https://jonmorisissqlblog.blogspot.com/2021/06/ranger-hive-policy-activation-time.html
... View more
11-23-2017
04:14 PM
Thanks adding the nodes to all - nifi-resource policy fixed the same problem for me
... View more
12-07-2017
12:07 PM
Yes you'll need a jaas.conf on your path looking something like the following and we also have a krb5.conf on the path. com.sun.security.jgss.krb5.initiate {
com.sun.security.auth.module.Krb5LoginModule required
doNotPrompt=true
principal=""
useKeyTab=true
keyTab=""
storeKey=true;
};
LoginKerb {
com.sun.security.auth.module.Krb5LoginModule required client=TRUE;
};
... View more
02-15-2018
06:06 AM
I had same issue on rhel 7 with below error Error: Execution of '/usr/bin/yum -d 0 -e 0 -y install hadoop_2_6_3_0_235-hdfs' returned 1. Error: Package: hadoop_2_6_3_0_235-hdfs-2.7.3.2.6.3.0-235.x86_64 (HDP-2.6-repo-101)
Requires: libtirpc-devel
You could try using --skip-broken to work around the problem Solution : Please check the Red Hat Enterprise Linux Server 7 Optional (RPMs) enabled on all nodes with below command # yum repolist all (To check enabled or disabled) !rhui-REGION-rhel-server-optional/7Server/x86_64 Red Hat Enterprise Linux Server 7 Optional (RPMs) Disabled: #yum-config-manager --enable rhui-REGION-rhel-server-optional ( enabling the optional rpms) Cross verify with first command to get it optional rpms enabled # yum repolist all !rhui-REGION-rhel-server-optional/7Server/x86_64 Red Hat Enterprise Linux Server 7 Optional (RPMs) enabled: 13,201
... View more
12-20-2016
01:29 PM
2 Kudos
Yes, use MonitorActivity processor: https://nifi.apache.org/docs/nifi-docs/components/org.apache.nifi.processors.standard.MonitorActivity/index.html
... View more
08-08-2018
09:58 PM
, 1.add this command yum-config-manager --add-repo http://public-repo-1.hortonworks.com/ambari/centos7/2.x/updates/2.4.1.0/ambari.repo 2. yum upgrade ambari-metrics-monitor ambari-metrics-hadoop-sink 3. yum install ambari-metrics-hadoop-sink Ambari-metrics installed
... View more