Member since
05-25-2016
31
Posts
1
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2517 | 09-08-2016 06:38 AM |
09-08-2016
06:38 AM
1 Kudo
I solved this problem.This problem was caught by supervisor. You can shutdown the supervisor or reset the supervisor.
... View more
08-25-2016
02:27 PM
1 Kudo
@da li As @Predrag Minovic mentioned for sharelib setup create, use following Oozie sharelib setup create command through 'oozie' user. /usr/hdp/current/oozie-server/bin/oozie-setup.sh sharelib create -fs hdfs://<hdfs hostname>:<hdfs port> -locallib /usr/hdp/current/oozie-server/oozie-sharelib.tar.gz Above command will create timestamp based oozie share lib directory to HDFS directory /user/oozie/share/lib . Hope this help you.
... View more
08-19-2016
01:10 AM
Yes,I installed Sqoop-2 myself. Thank you very very much!
... View more
06-08-2016
09:01 PM
For this command, find the correct /var/lib/ambari-agent/data/command-*.json file
and find the section, e.g., "hostLevelParams": {
...,
"ambari_db_rca_password": "mapred"
} This was introduced by AMBARI-4149, which tries to access the element at index 0, however, it's a string instead of a list.
This is controlled by the "server.jdbc.rca.user.passwd" property in the /etc/ambari-server/conf/ambari.properties file. You should file a Jira on Apache since this is a bug.
... View more
05-30-2016
10:38 AM
hey, i try to move /usr/hdp/current/zookeeper-client/conf to /etc/zookeeper/2.4.0.0-169/ , i can't find /usr/hdp/current/zookeeper-client/ and i can't find /etc/zookeeper/. so, can you tell why? and do you have other ways?
... View more
05-31-2016
08:18 PM
1 Kudo
That conf-select call tries to create the following symlink. /usr/hdp/current/zookeeper-server/conf -> /etc/zookeeper/2.4.0.0-169/0 1. Make sure zookeeper server is actually installed and Ambari shows it as a component for that host.
rpm -qa | grep zookeeper_.*server 2. Set its symlink.
hdp-select set zookeeper-server 2.4.0.0-169
# this will create symlink /usr/hdp/current/zookeeper-server -> /usr/hdp/2.4.0.0-169/zookeeper 3. Restart ZK Server on that host via the UI.
... View more