Member since
07-18-2018
53
Posts
0
Kudos Received
2
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1857 | 07-30-2018 04:19 PM | |
4587 | 07-26-2018 06:53 PM |
08-21-2019
05:24 PM
When your first post titled "Ambari-server start error" was caught by the spam filter, you created a second post with the same content. I approved one of them so we didn't have duplicate questions on the board.
I am unsure why your posts were flagged as spam. Our Community Admins are still tuning the spam filter rules after merging into the Unified Cloudera Community.
Our moderators will get posts out of spam quarantine as quickly as we are able. I apologize again for the inconvenience.
... View more
02-04-2019
03:50 PM
Hi Geoffrey, I have 4 data nodes and no snapshots set. Here are the output from the commands hdfs@msl-dpe-perf88:/$ hdfs dfs -df -h
Filesystem Size Used Available Use%
hdfs://msl-dpe-perf88.msl.lab:8020 28.2 T 27.1 T 0 96%
hdfs@msl-dpe-perf88:/$ hdfs lsSnapshottableDir
hdfs@msl-dpe-perf88:/$
... View more
10-17-2018
11:16 PM
@Harry Li It's paramount that you first go through this check list to prepare your new host to join the cluster. This is to avoid some frustrating errors especially having nonworking nodes in a cluster This document with screenshots for adding a data node to an existing HDP cluster looks good because the process is straightforward provided you followed the prerequisites. HTH
... View more
09-21-2018
06:18 PM
Yes. And I accepted the answer. Thanks.
... View more
08-08-2018
01:57 AM
1 Kudo
@Harry Li Please try this to verify your JDBC driver version: On Ambari Server Host: # mkdir /tmp/JDBC
# cd /tmp/JDBC
# cp -f /var/lib/ambari-server/resources/mysql-connector-java.jar /tmp/JDBC/
# jar xvf mysql-connector-java.jar
. The grep the version: # grep 'Implementation-Versio' META-INF/MANIFEST.MF
Implementation-Version: 8.0.11
# cat META-INF/services/java.sql.Driver
com.mysql.cj.jdbc.Driver . So if your MySQL JDBC Driver version is correct (MySQL 5 JDBC Driver then you might be seeing something like following instead: # grep 'Implementation-Versio' META-INF/MANIFEST.MF
Implementation-Version: 5.1.25-SNAPSHOT
# cat META-INF/services/java.sql.Driver
com.mysql.jdbc.Driver . MySQL connector 5.1 download link: https://dev.mysql.com/downloads/connector/j/5.1.html
... View more
08-03-2018
04:01 AM
/usr/hdp/current/hive/bin/schematool -info -dbType mysql -userName hive -passWord <password> -verbose Try following command and share the output.
... View more
08-01-2018
01:13 AM
@Harry Li It looks like a Symlink issue. Looks like due to some reason the symlink is not created properly. The "lib" should be actually here # ls -l /usr/hdp/2.6.5.0-292/slider/lib/ . The "/usr/hdp/current/slider-client" path should be ideally a symlink something like following: # ls -l /usr/hdp/current/slider-client
lrwxrwxrwx. 1 root root 27 Jun 28 22:44 /usr/hdp/current/slider-client -> /usr/hdp/2.6.5.0-292/slider
NOTE: here the version "2.6.5.0-292" might be different based on your Stack version. So please change the version accordingly. . So you might want to create a symlink on your own. First if you have "slider-client" as a Directory or as a Symlink? # ls -ld /usr/hdp/current/slider-client
lrwxrwxrwx. 1 root root 27 Jun 28 22:44 /usr/hdp/current/slider-client -> /usr/hdp/2.6.5.0-292/slider If you find that "/usr/hdp/current/slider-client" is a directory then move it. # mv /usr/hdp/current/slider-client /usr/hdp/current/slider-client_OLD Then create a symlink instead like: # ln -s /usr/hdp/2.6.5.0-292/slider /usr/hdp/current/slider-client NOTE: here the version "2.6.5.0-292" might be different based on your Stack version. So please change the version accordingly. .
... View more
07-30-2018
04:19 PM
There are 2 problems in the Ambari installation document for Ubuntu 16 at https://docs.hortonworks.com/HDPDocuments/Ambari-2.6.2.0/bk_ambari-installation/content/download_the_ambari_repo_ubuntu16.html wget -O /etc/apt/sources.list.d/ambari.list http://public-repo-1.hortonworks.com/ambari/ubuntu16/2.x/updates//ambari.list
apt-key adv --recv-keys --keyserver keyserver.ubuntu.com B9733A7A07513CAD
apt-get update As both Geoffrey and Jay had pointed out, the first sample command missing version number and document did not instruct to insert that for the execution For 2nd command to retrieve Linux key, the given format will result in timeout due to the syntax used. root@msl-dpe-perf77:/usr/local/Ambari# apt-key adv --recv-keys --keyserver keyserver.ubuntu.com B9733A7A07513CAD
Executing: /tmp/tmp.1enMMyqYWS/gpg.1.sh --recv-keys
--keyserver
keyserver.ubuntu.com
B9733A7A07513CAD
gpg: requesting key 07513CAD from hkp server keyserver.ubuntu.com
gpg: keyserver timed out
gpg: keyserver receive failed: keyserver error
root@msl-dpe-perf77:/usr/local/Ambari# Following syntax will resolve this error root@msl-dpe-perf77:/usr/local/Ambari# apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv B9733A7A07513CAD
Executing: /tmp/tmp.PQTyyilAKr/gpg.1.sh --keyserver
hkp://keyserver.ubuntu.com:80
--recv
B9733A7A07513CAD
gpg: requesting key 07513CAD from hkp server keyserver.ubuntu.com
gpg: key 07513CAD: "Jenkins (HDP Builds) <jenkin@hortonworks.com>" not changed
gpg: Total number processed: 1
gpg: unchanged: 1
root@msl-dpe-perf77:/usr/local/Ambari#
... View more
07-26-2018
07:01 PM
great . please accept your answer as best answer and close this threaad .
... View more