fx19880617 commented on issue #6257:
URL: 
https://github.com/apache/incubator-pinot/issues/6257#issuecomment-725599855


   if you are running in docker, then you can set this config in pinot server 
conf file:
   ```
   pinot.server.netty.host=pinot-server-0
   ```
   This `pinot-server-0` is the docker container name, so when we start the 
docker container, we need to specify the `--name `
   e.g.
   ```
   docker run --rm -ti \
       --name pinot-server-0 \
       --network=pinot-demo \
       --mount type=bind,source=/tmp/pinot-docker-conf,target=/tmp \
       apachepinot/pinot:latest StartServer \
       -zkAddress zookeeper:2181 -clusterName pinot-docker \
       -configFileName /tmp/server.conf
   ```


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to