connection.yaml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. mqtt:
  2. localConnection: #connection key
  3. servers: [tcp://127.0.0.1:1883]
  4. username: ekuiper
  5. password: password
  6. #certificationPath: /var/kuiper/xyz-certificate.pem
  7. #privateKeyPath: /var/kuiper/xyz-private.pem.key
  8. #rootCaPath: /var/kuiper/xyz-rootca.pem
  9. #insecureSkipVerify: false
  10. #protocolVersion: 3
  11. clientid: ekuiper
  12. cloudConnection: #connection key
  13. servers: ["tcp://broker.emqx.io:1883"]
  14. username: user1
  15. password: password
  16. #certificationPath: /var/kuiper/xyz-certificate.pem
  17. #privateKeyPath: /var/kuiper/xyz-private.pem.ke
  18. #rootCaPath: /var/kuiper/xyz-rootca.pem
  19. #insecureSkipVerify: false
  20. #protocolVersion: 3
  21. edgex:
  22. redisMsgBus: #connection key
  23. protocol: redis
  24. server: 127.0.0.1
  25. port: 6379
  26. type: redis
  27. # Below is optional configurations settings for mqtt
  28. # type: mqtt
  29. # optional:
  30. # ClientId: client1
  31. # Username: user1
  32. # Password: password
  33. # Qos: 1
  34. # KeepAlive: 5000
  35. # Retained: true/false
  36. # ConnectionPayload:
  37. # CertFile:
  38. # KeyFile:
  39. # CertPEMBlock:
  40. # KeyPEMBlock:
  41. # SkipCertVerify: true/false
  42. mqttMsgBus: #connection key
  43. protocol: tcp
  44. server: 127.0.0.1
  45. port: 1883
  46. topic: events
  47. type: mqtt
  48. optional:
  49. ClientId: "client1"