fix(data_bridge): comment out all the connector-config
This commit is contained in:
parent
0515ef6e45
commit
134970e7b7
|
@ -3,43 +3,43 @@
|
|||
##--------------------------------------------------------------------
|
||||
|
||||
emqx_data_bridge.bridges: [
|
||||
{name: "mysql"
|
||||
type: mysql
|
||||
config: {
|
||||
server: "192.168.0.172:3306"
|
||||
database: mqtt
|
||||
pool_size: 1
|
||||
username: root
|
||||
password: public
|
||||
auto_reconnect: true
|
||||
ssl: false
|
||||
}
|
||||
}
|
||||
, {name: "pgsql"
|
||||
type: pgsql
|
||||
config: {
|
||||
server: "192.168.0.172:5432"
|
||||
database: mqtt
|
||||
pool_size: 1
|
||||
username: root
|
||||
password: public
|
||||
auto_reconnect: true
|
||||
ssl: false
|
||||
}
|
||||
}
|
||||
, {name: "mongodb_single"
|
||||
type: mongo
|
||||
config: {
|
||||
servers: "192.168.0.172:27017"
|
||||
mongo_type: single
|
||||
pool_size: 1
|
||||
login: root
|
||||
password: public
|
||||
auth_source: mqtt
|
||||
database: mqtt
|
||||
ssl: false
|
||||
}
|
||||
}
|
||||
# {name: "mysql"
|
||||
# type: mysql
|
||||
# config: {
|
||||
# server: "192.168.0.172:3306"
|
||||
# database: mqtt
|
||||
# pool_size: 1
|
||||
# username: root
|
||||
# password: public
|
||||
# auto_reconnect: true
|
||||
# ssl: false
|
||||
# }
|
||||
# }
|
||||
# , {name: "pgsql"
|
||||
# type: pgsql
|
||||
# config: {
|
||||
# server: "192.168.0.172:5432"
|
||||
# database: mqtt
|
||||
# pool_size: 1
|
||||
# username: root
|
||||
# password: public
|
||||
# auto_reconnect: true
|
||||
# ssl: false
|
||||
# }
|
||||
# }
|
||||
# , {name: "mongodb_single"
|
||||
# type: mongo
|
||||
# config: {
|
||||
# servers: "192.168.0.172:27017"
|
||||
# mongo_type: single
|
||||
# pool_size: 1
|
||||
# login: root
|
||||
# password: public
|
||||
# auth_source: mqtt
|
||||
# database: mqtt
|
||||
# ssl: false
|
||||
# }
|
||||
# }
|
||||
# ,{name: "mongodb_rs"
|
||||
# type: mongo
|
||||
# config: {
|
||||
|
@ -77,18 +77,18 @@ emqx_data_bridge.bridges: [
|
|||
# min_heartbeat_frequency_ms: 10s
|
||||
# }
|
||||
# }
|
||||
, {name: "redis_single"
|
||||
type: redis
|
||||
config: {
|
||||
servers: "192.168.0.172:6379"
|
||||
redis_type: single
|
||||
pool_size: 1
|
||||
database: 0
|
||||
password: public
|
||||
auto_reconnect: true
|
||||
ssl: false
|
||||
}
|
||||
}
|
||||
# , {name: "redis_single"
|
||||
# type: redis
|
||||
# config: {
|
||||
# servers: "192.168.0.172:6379"
|
||||
# redis_type: single
|
||||
# pool_size: 1
|
||||
# database: 0
|
||||
# password: public
|
||||
# auto_reconnect: true
|
||||
# ssl: false
|
||||
# }
|
||||
# }
|
||||
# ,{name: "redis_sentinel"
|
||||
# type: redis
|
||||
# config: {
|
||||
|
@ -111,16 +111,16 @@ emqx_data_bridge.bridges: [
|
|||
# ssl: false
|
||||
# }
|
||||
# }
|
||||
, {name: "ldap"
|
||||
type: ldap
|
||||
config: {
|
||||
servers: "192.168.0.172"
|
||||
port: 389
|
||||
bind_dn: "cn=root,dc=emqx,dc=io"
|
||||
bind_password: "public"
|
||||
timeout: 30s
|
||||
pool_size: 1
|
||||
ssl: false
|
||||
}
|
||||
}
|
||||
# , {name: "ldap"
|
||||
# type: ldap
|
||||
# config: {
|
||||
# servers: "192.168.0.172"
|
||||
# port: 389
|
||||
# bind_dn: "cn=root,dc=emqx,dc=io"
|
||||
# bind_password: "public"
|
||||
# timeout: 30s
|
||||
# pool_size: 1
|
||||
# ssl: false
|
||||
# }
|
||||
# }
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue