连接服务端

该页面将向你展示如何从 Python 客户端连接 Milvus 服务端。

  1. 导入 pymilvus:

    1. # Import pymilvus.
    2. >>> from milvus import Milvus, IndexType, MetricType, Status
  2. 使用以下任意一种方法连接 Milvus 服务端:

    1. # Connect to the Milvus server.
    2. >>> milvus = Milvus(host='localhost', port='19530')

    在上面的代码中,hostport 都使用了默认值。你可以将其更改为自己设定的 IP 地址和端口。

    1. >>> milvus = Milvus(uri='tcp://localhost:19530')