Member since
09-17-2015
436
Posts
736
Kudos Received
81
Solutions
My Accepted Solutions
| Title | Views | Posted |
|---|---|---|
| 5203 | 01-14-2017 01:52 AM | |
| 7545 | 12-07-2016 06:41 PM | |
| 8968 | 11-02-2016 06:56 PM | |
| 2874 | 10-19-2016 08:10 PM | |
| 7368 | 10-19-2016 08:05 AM |
12-24-2015
05:51 PM
1 Kudo
@Suresh Raju you can probably ignore this: it should not have impact. + @rmolina if this is reproducible, we should file a bug and correct in the future to avoid confusion.
... View more
12-24-2015
05:33 PM
Its not needed on a single node. In the latest sandbox, this process has been turned off (maintenance mode) to conserve resources. On the sandbox page, see here for sandbox release notes for the current sandbox under section "Services not started automatically". HDFS
SecondaryNameNode
*Since on a single node, secondary namenode is not needed, it is not started. For more details on what secondary name node does see here If you are bored and have some time, this video also helps explain in way you won't soon forget 🙂
... View more
12-23-2015
06:35 PM
@vshukla mentioned that LDAP authentication for Zeppelin is planned for the next techpreview (currently slated for Jan)
... View more
12-23-2015
09:40 AM
1 Kudo
Setup an HDP 2.3.4 cluster using ambari 2.2 and getting all services in unknown state (yellow question mark). Usually, restarting ambari-agent resolves this but not here. Log file shows # tail /var/log/ambari-agent/ambari-agent.log
INFO 2015-12-23 01:12:32,165 DataCleaner.py:120 - Data cleanup started
INFO 2015-12-23 01:12:32,172 DataCleaner.py:122 - Data cleanup finished
INFO 2015-12-23 01:12:32,223 PingPortListener.py:50 - Ping port listener started on port: 8670
INFO 2015-12-23 01:12:32,225 main.py:289 - Connecting to Ambari server at https://sandbox.hortonworks.com:8440 (192.168.191.139)
INFO 2015-12-23 01:12:32,225 NetUtil.py:60 - Connecting to https://sandbox.hortonworks.com:8440
ERROR 2015-12-23 01:15:52,344 NetUtil.py:84 - [Errno 8] _ssl.c:492: EOF occurred in violation of protocol
ERROR 2015-12-23 01:15:52,344 NetUtil.py:85 - SSLError: Failed to connect. Please check openssl library versions.
Refer to: https://sandbox.hortonworks.com:8440 for more details.
WARNING 2015-12-23 01:15:52,345 NetUtil.py:112 - Server at https://sandbox.hortonworks.com:8440 is not reachable, sleeping for 10 seconds...
INFO 2015-12-23 01:16:02,346 NetUtil.py:60 - Connecting to https://sandbox.hortonworks.com:8440
Initially I thought it was openSSL version issue but that seems to be ok: # rpm -qa | grep openssl
openssl-1.0.1e-42.el6_7.1.x86_64
# yum update openssl
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirror.dattobackup.com
* epel: linux.mirrors.es.net
* extras: dallas.tx.mirror.xygenhosting.com
* updates: centos.hostingxtreme.com
Setting up Update Process
No Packages marked for Update
# cat /etc/ambari-server/conf/ambari.properties | grep java
java.home=/usr/java/default
java.releases=jdk1.8,jdk1.7
... View more
Labels:
12-23-2015
06:22 AM
1 Kudo
This lab article may be useful: https://community.hortonworks.com/articles/1160/in...
... View more
12-21-2015
04:38 PM
There is a bug which requires you to manually copy hive/hcat jars into spark shared lib dir in order to get this to work: https://issues.apache.org/jira/browse/OOZIE-2277
... View more
12-21-2015
06:16 AM
1 Kudo
+ @Robert Metzger @Stephan Ewen as they are the experts on Flink streaming @Hemant Kumar this also may provide some hints: http://stackoverflow.com/questions/34379170/error-...
... View more
12-18-2015
03:41 AM
@Amey Jain you can also check the metainfo.xml for the Cassandra service built by Greg Hill here. (btw any reason why you can't reuse the Cassandra Ambari service he has already worked on?)
... View more
12-18-2015
03:33 AM
Yes the install_package method will pick the package names listed under <package> item of metainfo.xml. We avoid putting "yum install" in the code because for other platforms (like ubuntu) the command would be different. For example of how to specify the package, see here. It basically means that on all platforms install the package called "hbase" using whatever is the appropriate call for platform. Alternatively you can specify different package names for each platform/version using something like this in the metainfo.xml
... View more