2023-12-07 15:15:12 +02:00
|
|
|
# hawkBit DDI Server (EXPERIMENTAL!)
|
2024-11-05 11:38:12 +02:00
|
|
|
|
|
|
|
|
The hawkBit DDI Server is a standalone spring-boot application with an embedded servlet container. It should be started
|
|
|
|
|
with at least hawkbit-mgmt-server.
|
2023-11-30 15:41:12 +02:00
|
|
|
|
|
|
|
|
## On your own workstation
|
|
|
|
|
|
|
|
|
|
### Run
|
|
|
|
|
|
|
|
|
|
```bash
|
2024-11-27 08:14:52 +02:00
|
|
|
java -jar hawkbit-ddi/hawkbit-ddi-server/target/hawkbit-ddi-server-0-SNAPSHOT.jar
|
2023-11-30 15:41:12 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
_(Note: you have to add the JDBC driver also to your class path if you intend to use another database than H2.)_
|
|
|
|
|
|
|
|
|
|
Or:
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-02-10 12:50:31 +02:00
|
|
|
run org.eclipse.hawkbit.app.ddi.DdiStart
|
2023-11-30 15:41:12 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### Usage
|
2024-11-05 11:38:12 +02:00
|
|
|
|
2023-11-30 15:41:12 +02:00
|
|
|
The Management API can be accessed via http://localhost:8081/rest/v1
|
|
|
|
|
The root url http://localhost:8081 will redirect directly to the Swagger Management UI
|
|
|
|
|
|
2025-07-30 16:58:00 +03:00
|
|
|
# Clustering (Experimental!!!)
|
|
|
|
|
## Remote Events between micro-services
|
2025-11-13 15:56:41 +02:00
|
|
|
[See more information](../../docs/content/guides/clustering.md)
|