How to Send Device Data From EdgeX to AWS IoT Core using Docker Compose File #249
Replies: 2 comments 5 replies
-
The problem you are having is that you are running edgex in secure mode, but try to set you secrets using You need to run EdgeX in non-secure mode using the See the compose builder README for complete details: Also, the version 2.0.0 that you are using is no longer supported. The latest and only supported version of EdgeX is 3.1.0 (Napa) |
Beta Was this translation helpful? Give feedback.
-
Thank you for your response. I tried with Napa but getting this below error - Kindly help |
Beta Was this translation helpful? Give feedback.
-
I am using Docker compose to write "app-service-mqtt" Application Service but not able to connect to AWS IoT Core getting these below errors -
app-service-mqtt:
image: edgexfoundry/app-service-configurable:2.0.0
ports:
- 127.0.0.1:59789:59789/tcp
read_only: true
security_opt:
- no-new-privileges:true
user: 2002:2001
container_name: edgex-app-service-configurable-mqtt
hostname: edgex-app-service-configurable-mqtt
networks:
edgex-network: {}
env_file:
- .env
environment:
CLIENTS_CORE_COMMAND_HOST: edgex-core-command
CLIENTS_CORE_DATA_HOST: edgex-core-data
CLIENTS_CORE_METADATA_HOST: edgex-core-metadata
CLIENTS_SUPPORT_NOTIFICATIONS_HOST: edgex-support-notifications
CLIENTS_SUPPORT_SCHEDULER_HOST: edgex-support-scheduler
DATABASES_PRIMARY_HOST: edgex-redis
EDGEX_PROFILE: mqtt-export
SERVICE_HOST: edgex-app-service-configurable-mqtt
Service_Port: 48097
MessageBus_SubscribeHost_Host: edgex-core-data
Binding_PublishTopic: events
Beta Was this translation helpful? Give feedback.
All reactions