I am having a bit of difficulty getting OpenTSDB installed on my Cloudera Single Node VM CDH 5.
I am hoping to test on the VM, then move to our 5 node cluster Dev servers (CentOS 6.5) and then to AWS in the cloud.
I am following these instructions
http://opentsdb.net/docs/build/html/installation.html#id1
I can telnet to Zookeeper
This goes well
git clone git://github.com/OpenTSDB/opentsdb.git
cd opentsdb
./build.sh
But here is where we go wrong….
env COMPRESSION=NONE HBASE_HOME=path/to/hbase-0.94.X ./src/create_table.sh
Error
env: ./src/create_table.sh: No such file or directory
I have searched the file system and the only HBase folders I have are /etc/HBase
I have also used this page
https://github.com/OpenTSDB/opentsdb/wiki/Installation-on-Cloudera-Virtual-Machine
and it shows HBase to be in /usr/lib/hbase
“env COMPRESSION=none HBASE_HOME=/usr/lib/hbase ./src/create_table.sh
/usr/lib/hbase I don’t have an HBase folder in /usr/lib nor do I have any folders (directories) named HBase-0.94
The only HBase I have is in /etc so should I just change it to point to
“env COMPRESSION=none HBASE_HOME=/etc/hbase ./src/create_table.sh
thx!