Commit 0c90994d authored by 吴文龙's avatar 吴文龙

fix

parent 73b90bac
# 激活边端
curl --location --request POST 'http://10.10.39.251:8083/connectors' \
curl --location --request POST 'http://localhost:8083/connectors' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "inventory-connector-v3",
......@@ -20,9 +20,9 @@ curl --location --request POST 'http://10.10.39.251:8083/connectors' \
}'
# 查询
curl -X GET 'http://10.10.39.251:8083/connectors/inventory-connector-v3'
curl --location --request GET 'http://10.10.39.251:8083/connectors/inventory-connector-v3/status'
curl -X GET 'http://localhost:8083/connectors/inventory-connector-v3'
curl --location --request GET 'http://localhost:8083/connectors/inventory-connector-v3/status'
# 删除
curl --location --request DETELE 'http://10.10.39.251:8083/connectors/inventory-connector-v3'
curl --location --request DELETE 'http://10.10.39.251:8083/connectors/inventory-connector-v3'
\ No newline at end of file
curl --location --request DETELE 'http://localhost:8083/connectors/inventory-connector-v3'
curl --location --request DELETE 'http://localhost:8083/connectors/inventory-connector-v3'
\ No newline at end of file
......@@ -30,5 +30,5 @@ ADDITIONAL_COMPOSE_MONITORING_ARGS=$(additionalComposeMonitoringArgs) || exit $?
checkFolders --create || exit $?
docker-compose \
-f docker-compose.yml -f docker-compose-mysql.yml -f docker-compose-pgadmin4.yml -f docker-compose-debezium.yml -f docker-compose.iot-business.yml $ADDITIONAL_CACHE_ARGS $ADDITIONAL_COMPOSE_ARGS $ADDITIONAL_COMPOSE_QUEUE_ARGS $ADDITIONAL_COMPOSE_MONITORING_ARGS \
-f docker-compose.yml -f docker-compose-pgadmin4.yml -f docker-compose-debezium.yml -f docker-compose.iot-business.yml $ADDITIONAL_CACHE_ARGS $ADDITIONAL_COMPOSE_ARGS $ADDITIONAL_COMPOSE_QUEUE_ARGS $ADDITIONAL_COMPOSE_MONITORING_ARGS \
up -d
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment