1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- mqtt:
- localConnection: #connection key
- servers: [tcp://127.0.0.1:1883]
- username: ekuiper
- password: password
- #certificationPath: /var/kuiper/xyz-certificate.pem
- #privateKeyPath: /var/kuiper/xyz-private.pem.key
- #rootCaPath: /var/kuiper/xyz-rootca.pem
- #insecureSkipVerify: false
- #protocolVersion: 3
- clientid: ekuiper
- cloudConnection: #connection key
- servers: ["tcp://broker.emqx.io:1883"]
- username: user1
- password: password
- #certificationPath: /var/kuiper/xyz-certificate.pem
- #privateKeyPath: /var/kuiper/xyz-private.pem.ke
- #rootCaPath: /var/kuiper/xyz-rootca.pem
- #insecureSkipVerify: false
- #protocolVersion: 3
- edgex:
- redisMsgBus: #redis connection key
- protocol: redis
- server: 127.0.0.1
- port: 6379
- type: redis
- # Below is optional configurations settings for mqtt
- # type: mqtt
- # optional:
- # ClientId: client1
- # Username: user1
- # Password: password
- # Qos: 1
- # KeepAlive: 5000
- # Retained: true/false
- # ConnectionPayload:
- # CertFile:
- # KeyFile:
- # CertPEMBlock:
- # KeyPEMBlock:
- # SkipCertVerify: true/false
- mqttMsgBus: #connection key
- protocol: tcp
- server: 127.0.0.1
- port: 1883
- type: mqtt
- optional:
- ClientId: "client1"
- zeroMsgBus: #connection key
- protocol: tcp
- server: localhost
- port: 5571
- type: zero
|