milvus:ubuntu24.04安装milvus
一,官网:
https://milvus.io/zh
软件包下载页面:
https://github.com/milvus-io/milvus/releases/tag/v2.6.4
二,下载并安装
1,下载
# wget https://github.com/milvus-io/milvus/releases/download/v2.6.4/milvus_2.6.4-1_amd64.deb
2,安装:
# apt install -y ./milvus_2.6.4-1_amd64.deb
3,检验是否安装成功:
# dpkg -l | grep milvus
iU milvus 2.6.4-1 amd64 An open-source vector dstabase for unstructured data.
三,启动
查看状态,已经自动启动了
# systemctl status milvus
● milvus.service - Milvus Standalone Server
Loaded: loaded (/usr/lib/systemd/system/milvus.service; enabled; preset: enabled)
Active: active (running) since Sat 2025-11-15 11:01:15 CST; 33s ago
Main PID: 11238 (milvus)
Tasks: 14 (limit: 19030)
Memory: 87.4M (peak: 87.7M)
CPU: 2.361s
CGroup: /system.slice/milvus.service
├─11238 /usr/bin/milvus run standalone
└─11283 /usr/bin/dbus-daemon --syslog --fork --print-pid 5 --print-address 8 --session
查看开启的端口:
# ss -lntp | grep milvus
LISTEN 0 4096 127.0.0.1:2380 0.0.0.0:* users:(("milvus",pid=11238,fd=12))
LISTEN 0 4096 *:53100 *:* users:(("milvus",pid=11238,fd=19))
LISTEN 0 4096 *:19530 *:* users:(("milvus",pid=11238,fd=26))
LISTEN 0 4096 *:19529 *:* users:(("milvus",pid=11238,fd=27))
LISTEN 0 4096 *:2379 *:* users:(("milvus",pid=11238,fd=13))
LISTEN 0 4096 *:9091 *:* users:(("milvus",pid=11238,fd=17))
LISTEN 0 4096 *:22222 *:* users:(("milvus",pid=11238,fd=28))
LISTEN 0 4096 *:21124 *:* users:(("milvus",pid=11238,fd=21))
LISTEN 0 4096 *:21123 *:* users:(("milvus",pid=11238,fd=20))
浙公网安备 33010602011771号