Installing Spring-XD on Hortonworks HDP - redhat

I'm trying to install Spring-XD on the Hortonworks HDP Sandbox (VM Virtualbox running Red Hat).
According to the Spring-XD documentation (http://docs.spring.io/spring-xd/docs/1.0.0.M6/reference/html/#redhatcentos-installation), you can "install Spring XD using homebrew on OSX and yum on RedHat/CentOS."
I've tried yum search spring and with other spelling permutations, but get no matches.
Can anyone explain how to install spring-xd in this environment, whether via yum or other means?

Related

node-red: Failed to install node-red-contrib-db2-for-i package

hi need some help please, i try to install the node-red-contrib-db2-for-i package on node-red (i used node red as a service on ibm cloud) but it fail. i have this bug :Failed to install: node-red-contrib-db2-for-i.
That package is explicitly for connecting to IBM DB2 running on iSerise and need Node-RED to be running on iSerise hardware as well.
It will NOT run on a x64 Linux machine.
From the README for the node:
Prerequisites
If you use the latest package version (>=0.1.5) :
5733OPS is not used anymore (Deprecated). A prerequisite is to install
the Node.js iDB Connector idb-connector (done automatically when
installing this package if not already present) with Node.js (version
8 and later) using a yum install. This node has to run on Node.js /
Node-RED on IBM i (Native driver) but there will be soon an ODBC
alternative :)

Can anyone help me installation Mosquitto 2.0 on CentOS linux 7.0

I need to install Mosquitto 2.0 on my centOS linux machine.
The command available is yum install mosquitto works well, but it installs 1.6 version
I cannot use docker due to some limitation in my machine container eligibility.
Can anyone help me in this?
After some trial and error along with performing this is the best document I got so far.
https://www.disk91.com/2016/technology/internet-of-things-technology/install-mosquitto-mqtt-server-on-centos-to-publish-iot-data/

Error in starting confluent in Ubuntu. confluent requires curl

I have installed confluent 3.3.1 in Ubuntu 16.04LTS. I followed all the instructions to install confluent as per documentation. But, when I start confluent using "confluent start". I am getting an error 'confluent' requires 'curl'. What should I change to fix this issue. I have Java8 and Scala 2.11 in my system.
This is the link i followed.
Install Confluent 3.3.1
just install curl package via
sudo apt-get install curl
it could be that they don't have dependency explicitly set in their package - it's better to raise a bug...
Feel free to track https://github.com/confluentinc/confluent-cli/issues/54
It'll be fixed in the forthcoming bugfix release for each version of Confluent Platform.
I still get this error on Red Hat Enterprise Linux Server release 7.4 (Maipo) as of May 22nd 2018.
The solution as mentioned by Alex Ott is to install curl.
sudo yum install curl

If my CentOS 7.2 box has vagrant 1.7.2, can I just run the 1.8.1 rpm to get vagrant 1.8.1?

I have a CentOS 7.2 laptop. I have VirtualBox 5.0.x installed on it. Out of the box, it appears that I have Vagrant 1.7.2. Apparently this doesn't support VirtualBox 5.0.x, but it appears that version 1.8.1 does. What is the proper way to get access to 1.8.1? There is an installation rpm for 1.8.1 that I've downloaded, I can run this with "rpm", but do I have to do anything else before I do that?
Use Software Collections to get Vagrant 1.8.1 on CentOS: Vagrant 1.8 by Software Collections (the linked page contains instructions on how to do that). That will give you a build tested by the CentOS project.
As a sidenote: If you downloaded a standalone RPM package (presumably directly from the Vagrant project) and wish to install it, do it using the yum package manager, not rpm -- yum takes care of dependencies.

How to install Ambari in Hortonworks HDP?

I am trying to install HortonWorks HDP manually on a CentOS box. I am following the instructions given on this page http://docs.hortonworks.com/HDPDocuments/HDP2/HDP-2.3.2/bk_installing_manually_book/content/meet-min-system-requirements.html
I do not see any instruction on installing Apache Ambari. How to do it?
The instructions that you are looking at are for installing HDP manually, that means installing HDP without Ambari. You cannot have a manual installation with Ambari since Ambari is a tool for provisioning, managing and monitoring Hadoop clusters. If the cluster is configured manually it cannot be managed or monitored by Ambari.
If you do intend on having Ambari provision the cluster for you and the machine has access to the internet you can run the following commands:
For CentOS6
sudo wget -nv http://public-repo-1.hortonworks.com/ambari/centos6/2.x/updates/2.1.2/ambari.repo -O /etc/yum.repos.d/ambari.repo
sudo yum install ambari-server
sudo ambari-server setup
For CentOS7
sudo wget -nv http://public-repo-1.hortonworks.com/ambari/centos7/2.x/updates/2.1.2/ambari.repo -O /etc/yum.repos.d/ambari.repo
sudo yum install ambari-server
sudo ambari-server setup
If the machine doesn't have access to the internet or if you need further information see the official HDP documentation for installation guidance.