diff --git a/docs/content/gettingstarted.md b/docs/content/gettingstarted.md index 3c39e9707..bf5ecc63b 100755 --- a/docs/content/gettingstarted.md +++ b/docs/content/gettingstarted.md @@ -5,7 +5,7 @@ weight: 20 ## On Sandbox -We offer a sandbox installation that is free for everyone to try out hawkBit's [Management UI](/hawkbit/ui/), +We offer a sandbox installation that is free for everyone to try out hawkBit's [Management UI](/hawkbit/ui/), [Management API](/hawkbit/apis/management_api/), and [Direct Device Integration API](/hawkbit/apis/ddi_api/):   **[  https://hawkbit.eclipse.org](https://hawkbit.eclipse.org)** @@ -26,10 +26,12 @@ In addition, the following vendors offer free trial accounts for their Eclipse h | Service / Container | A | B | C | |---|---|---|---| -| hawkBit Update Server | ✓ | ✓ | ✓ | -| hawkBit Device Simulator | | | ✓ | -| MySQL | | ✓ | ✓ | -| RabbitMQ | | ✓ | ✓ | +| hawkBit Update Server | ✓ | ✓ | ✓ | +| hawkBit Device Simulator | | | ✓ | +| MySQL | | ✓ | ✓ | +| RabbitMQ | | ✓ | ✓ | + +HawkBit Update Server uses username=admin and password=admin as default login credentials. They can be overridden by the environment variables spring.security.user.name and spring.security.user.password which are defined in the corresponding default [application.properties](hawkbit-runtime/hawkbit-update-server/src/main/resources/application.properties). ### A: Run hawkBit Update Server as Docker Container diff --git a/hawkbit-runtime/docker/docker-compose-stack.yml b/hawkbit-runtime/docker/docker-compose-stack.yml index ff0b87898..099704c30 100644 --- a/hawkbit-runtime/docker/docker-compose-stack.yml +++ b/hawkbit-runtime/docker/docker-compose-stack.yml @@ -79,7 +79,7 @@ services: condition: on-failure environment: MYSQL_DATABASE: "hawkbit" - MYSQL_USER: "root" + # MYSQL_USER: "root" is created by default in the container for mysql 5.7+ MYSQL_ALLOW_EMPTY_PASSWORD: "true" diff --git a/hawkbit-runtime/docker/docker-compose.yml b/hawkbit-runtime/docker/docker-compose.yml index d698e82f5..9b9e6bb64 100644 --- a/hawkbit-runtime/docker/docker-compose.yml +++ b/hawkbit-runtime/docker/docker-compose.yml @@ -31,7 +31,7 @@ services: image: "mysql:5.7" environment: MYSQL_DATABASE: "hawkbit" - MYSQL_USER: "root" + # MYSQL_USER: "root" is created by default in the container for mysql 5.7+ MYSQL_ALLOW_EMPTY_PASSWORD: "true" restart: always ports: