start-tb-node.sh 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #!/bin/bash
  2. #
  3. # Copyright © 2016-2023 The Thingsboard Authors
  4. #
  5. # Licensed under the Apache License, Version 2.0 (the "License");
  6. # you may not use this file except in compliance with the License.
  7. # You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. #
  17. CONF_FOLDER="/config"
  18. jarfile=${pkg.installFolder}/bin/${pkg.name}.jar
  19. configfile=${pkg.name}.conf
  20. run_user=${pkg.user}
  21. source "${CONF_FOLDER}/${configfile}"
  22. export LOADER_PATH=/config,${LOADER_PATH}
  23. cd ${pkg.installFolder}/bin
  24. if [ "$INSTALL_TB" == "true" ]; then
  25. if [ "$LOAD_DEMO" == "true" ]; then
  26. loadDemo=true
  27. else
  28. loadDemo=false
  29. fi
  30. echo "Starting ThingsBoard installation ..."
  31. exec java -cp ${jarfile} $JAVA_OPTS -Dloader.main=org.thingsboard.server.ThingsboardInstallApplication \
  32. -Dinstall.load_demo=${loadDemo} \
  33. -Dspring.jpa.hibernate.ddl-auto=none \
  34. -Dinstall.upgrade=false \
  35. -Dlogging.config=/usr/share/thingsboard/bin/install/logback.xml \
  36. org.springframework.boot.loader.PropertiesLauncher
  37. elif [ "$UPGRADE_TB" == "true" ]; then
  38. echo "Starting ThingsBoard upgrade ..."
  39. if [[ -z "${FROM_VERSION// }" ]]; then
  40. echo "FROM_VERSION variable is invalid or unspecified!"
  41. exit 1
  42. else
  43. fromVersion="${FROM_VERSION// }"
  44. fi
  45. exec java -cp ${jarfile} $JAVA_OPTS -Dloader.main=org.thingsboard.server.ThingsboardInstallApplication \
  46. -Dspring.jpa.hibernate.ddl-auto=none \
  47. -Dinstall.upgrade=true \
  48. -Dinstall.upgrade.from_version=${fromVersion} \
  49. -Dlogging.config=/usr/share/thingsboard/bin/install/logback.xml \
  50. org.springframework.boot.loader.PropertiesLauncher
  51. else
  52. echo "Starting '${project.name}' ..."
  53. exec java -cp ${jarfile} $JAVA_OPTS -Dloader.main=org.thingsboard.server.ThingsboardServerApplication \
  54. -Dspring.jpa.hibernate.ddl-auto=none \
  55. -Dlogging.config=/config/logback.xml \
  56. org.springframework.boot.loader.PropertiesLauncher
  57. fi