The following example shows you how to fully configure an MDS EDC.
- Ensure the EDC Image you are using in the docker-compose.yaml file
is
edc-ce-mds
. - Adjust the Connector Metadata:
# Connector Technical Name MY_EDC_NAME_KEBAB_CASE: "example-connector" # Connector Localized Name / Title MY_EDC_TITLE: "EDC Connector" # Connector Description Text MY_EDC_DESCRIPTION: "Community Edition EDC Connector by sovity" # Connector Curator # The company using the EDC Connector, configuring data offers, etc. MY_EDC_CURATOR_URL: "https://example.com" MY_EDC_CURATOR_NAME: "Example GmbH" # Connector Maintainer # The company hosting the EDC Connector MY_EDC_MAINTAINER_URL: "https://sovity.de" MY_EDC_MAINTAINER_NAME: "sovity GmbH"
- Generate your
.jks
file and your SKI/AKI ClientID. See FAQ for more information. - Adjust your data space specific configuration:
# Required by the broker-extensions, EDC_OAUTH_CLIENT_ID: '_your SKI/AKI_' EDC_KEYSTORE: '_your keystore file relative to docs/getting-started/secrets_' EDC_KEYSTORE_PASSWORD: '_your keystore password_' # MDS Test Environment EDC_OAUTH_TOKEN_URL: 'https://daps.test.mobility-dataspace.eu/token' EDC_OAUTH_PROVIDER_JWKS_URL: 'https://daps.test.mobility-dataspace.eu/jwks.json' EDC_BROKER_BASE_URL: 'https://broker.test.mobility-dataspace.eu' EDC_CLEARINGHOUSE_LOG_URL: 'https://clearing.test.mobility-dataspace.eu/messages/log'
- Start the EDC
# Log-in into the Github Container Registry docker login ghcr.io # Fetches latest images docker compose pull # Runs EDC and EDC UI at localhost:11000 docker compose up
- Visit localhost:11000
There's an openapi.yaml that includes the vanilla EDC endpoints exposed by the current control- and data plane APIs.
To further try out our EDC Backend without the UI, try our Postman Collection:
- Use Postman (https://github.com/postmanlabs)
- Import the collection docs/postman_collection.json.
- Depending on your configuration changes, you need to adjust variables on collection
MDV > Variables > Current Value
api_key
needs to be aligned withEDC_API_AUTH_KEY
- To test the MDS Broker functionality, simply execute steps
Publish Asset 1
Publish Policy 1
Publish ContractDefinition 1
: You will see a notification about registering resource at broker, which will then be reflected in the Broker's UI.Delete ContractDefinition 1
: You will see a notification about unregistering the resource at broker.
There are currently two maintained Docker Compose files in our root directory.
File | Description |
---|---|
docker-compose.yaml | Run a stable version. |
docker-compose-dev.yaml | Run the current development version, which might break. |
Example of a client-ID entry:
EDC_OAUTH_CLIENT_ID: 7X:7Y:...:B2:94:keyid:6A:2B:...:28:80
You can use a script (if you're on WSL or Linux) to generate the SKI, AKI and jks file.
- Make sure you're on Linux or on a bash console (e.g. WSL or Git Bash) and have openssl and keytool installed
- Navigate in the console to the resources/docs directory
- Run the script
./secrets/generate_ski_aki.sh [filepath].p12 [password]
and substitute [filepath] to the p12 certificate filepath and [password] to the certificate password - The jks file will be generated in the same folder as your p12 file and the SKI/AKI combination is printed out in the console. Copy the SKI:AKI combination and use it to start the EDC (optionally also save it to your password manager).
In the default configuration the connector certificate should be stored inside a keystore.jks
in a folder docs/getting-started/secrets
next to the docker-compose. The path and keystore name can be edited in the env-variable EDC_KEYSTORE
.
No, locally run connectors cannot exchange data with online connectors. A connector must have a proper URL + configuration and be accesible from the data provider via REST calls.