:wave: Hello, team! I've updated the port for otel...
# support
a
👋 Hello, team! I've updated the port for otel collector to 5318 from 4318 in docker-compose.yaml - "4317:5317" # OTLP gRPC receiver - "4318:5318" # OTLP HTTP receiver Also, in otel-collector-config.yaml I've changed grpc: endpoint: 0.0.0.0:5317 http: endpoint: 0.0.0.0:5318 but getting error Bind for 0.0.0.0:4318 failed: port is already allocated while running .install.sh
s
You are mapping the 5318 of container port to 4318 of host port. It says port is already allocated which means there is some other process using the 4318. Please find that and kill it.