I have a new ubuntu 16.04 virtual machine that I am trying to install thingsboard when using this documentation Introductory Guide and is not successful:
This is what was done on the machine:
sudo apt-get install default-jre default-jdk- Export
JAVA_HOME='/usr/lib/jvm/default-java' git clone https://github.com/thingsboard/thingsboard.gitgit checkout release-1.3cd ${TB_WORK_DIR}/applicationmvn clean install -DskipTests- Modified
cd ${TB_WORK_DIR}/application/target/bin/install/install_dev_db.sh for my user and executed script.
I would like to use HSQLDB at the moment. cd ${TB_WORK_DIR}/applicationmvn clean install -DskipTests
Results:
The NPM server starts, but when I log in to localhost:3000 and try to log in using tenant@thingsboard.org / tenant , I get an error message
[Error API proxy error: Error connect ECONNREFUSED 127.0.0.1:8080]
I checked three times that I did not have a typo.
Am I missing a step?
I do not use a proxy server and got the same error as above:
npm config set proxy null npm config set https-proxy null npm config npm config set registry http://registry.npmjs.org/
cat ~ / .npmrc:
proxy=null https-proxy=null registry=http://registry.npmjs.org/ls
source share