Milvus Standalone
This chapter contains the command to manipulate a Milvus standalone cluster.
delete [READ MORE]
This operation removes the `milvus-standalone` container, the `volumes/` data directory, and the `embedEtcd.yaml` / `user.yaml` config files. Destructive — requires confirmation or `--yes`. Useful when you want a clean reinstall.
install [READ MORE]
This operation downloads the official `standaloneembed.sh` script into a local install directory. Pass `--start` to launch the container immediately after download. Requires `bash` and a working Docker daemon if `--start` is used.
restart [READ MORE]
This operation stops and then starts the Milvus standalone container by running `bash standaloneembed.sh restart`. Requires a working Docker daemon.
start [READ MORE]
This operation launches the Milvus standalone container by running `bash standaloneembed.sh start` from the install directory. Default endpoints after start Milvus `localhost:19530`, WebUI `http://localhost:9091`, embedded etcd `localhost:2379`. Requires a working Docker daemon.
stop [READ MORE]
This operation stops the Milvus standalone container by running `bash standaloneembed.sh stop` from the install directory. Data volumes and config files are left untouched.
upgrade [READ MORE]
This operation stops the container and replaces `standaloneembed.sh` with the latest version from upstream master, then restarts. Destructive — requires confirmation or `--yes`. Alias `update`.