Qdrant 安装(Windows)

安装包下载:https://github.com/qdrant/qdrant/releases
image

解压并创建目录&文件

D:\ProgramData\Qdrant\
├── qdrant.exe
├── storage          # 手动创建
└── config\
    └── config.yaml   # 可选配置文件

image

创建配置文件(推荐)

service:
  host: 0.0.0.0
  http_port: 6333
  grpc_port: 6334

storage:
  storage_path: "./storage"

双击启动
image

浏览器访问:http://localhost:6333

{
  "title": "qdrant - vector search engine",
  "version": "1.18.3",
  "commit": "db8fa43fcb6aedec1e739487e17a99731b74590a"
}

这时候是不能访问 Dashboard 的,需要下载 Web UI: https://github.com/qdrant/qdrant-web-ui/releases
image
在 qdrant.exe 同级目录下创建 static 目录,将 dist 压缩包解压到 static 目录下
image

重启 qdrant.exe
浏览器访问:http://localhost:6333/dashboard
image

posted @ 2026-08-03 11:30  VipSoft  阅读(8)  评论(0)    收藏  举报