dockerinstallationportmilvus

A question about the Milvus docker installation port


I know that when dockers installs Milvus, port 19530 is the Milvus port. I would like to know what port 19121 does and if it can be installed without mapping this port? The dockers command to install milvus is as follows:

   sudo docker run -d --name milvus_gpu_1.0.0 --gpus all \
    -p 19530:19530 \
    -p 19121:19121 \
    -v /home/$USER/milvus/db:/var/lib/milvus/db \
    -v /home/$USER/milvus/conf:/var/lib/milvus/conf \
    -v /home/$USER/milvus/logs:/var/lib/milvus/logs \
    -v /home/$USER/milvus/wal:/var/lib/milvus/wal \
    milvusdb/milvus:1.0.0-gpu-d030521-1ea92e

Solution

  • Both of them seem to be used: https://milvus.io/docs/v0.10.1/milvus_config.md#Section-network

    Parameter   Description                               Type      Default
    -----------------------------------------------------------------------
    bind.port   Port that Milvus server monitors.         Integer   19530
    http.port   Port that Milvus HTTP server monitors.    Integer   19121