mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-05 10:22:41 +08:00
14 lines
355 B
Markdown
14 lines
355 B
Markdown
# How to start a master
|
|
|
|
## Requirements
|
|
### Start a etcdv3
|
|
```
|
|
./etcd -listen-peer-urls=http://192.168.1.10:12380 -advertise-client-urls=http://192.168.1.10:12379 -listen-client-urls http://0.0.0.0:12379,http://0.0.0.0:14001 -initial-advertise-peer-urls=http://192.168.1.10:12380
|
|
```
|
|
## Start from code
|
|
```
|
|
go run cmd/master.go
|
|
```
|
|
|
|
## Start with docker
|