1. 导入测试数据的脚步路径 application/target/bin/install/install_dev_db.sh
#!/bin/bash
#
# Copyright © 2016-2021 The Thingsboard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
BASE=/home/shun/hetu-platform/application/target
CONF_FOLDER=${BASE}/conf
jarfile="${BASE}/thingsboard-3.2.2-boot.jar"
installDir=${BASE}/data
loadDemo=true
export JAVA_OPTS="$JAVA_OPTS -Dplatf

在尝试通过安装脚本`install_dev_db.sh`导入thingsboard 3.2.2的测试数据时遇到失败。经过排查,发现并非java环境变量配置错误,而是shell脚本无法找到java路径。解决方案是使用`sudo update-alternatives`命令将java和javac链接到/usr/local/bin目录下,成功解决了问题。
最低0.47元/天 解锁文章
315

被折叠的 条评论
为什么被折叠?



