milvus/scripts/start.sh
zhenshan.cao f74ea3beee [skip ci] Remove ProxyService (#5738)
* [skip ci] Remove ProxyService

Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>

* Change helm branch

Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>

* Fix bug: paramstable crashed

Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
2021-06-15 16:36:35 +08:00

28 lines
731 B
Bash
Executable File

cd ..
echo "starting master"
nohup ./bin/milvus run master > ~/masterservice.out 2>&1 &
echo "starting dataservice"
nohup ./bin/milvus run dataservice > ~/dataservice.out 2>&1 &
echo "starting datanode"
nohup ./bin/milvus run datanode > ~/datanode.out 2>&1 &
echo "starting proxynode"
nohup ./bin/milvus run proxynode > ~/proxynode.out 2>&1 &
echo "starting queryservice"
nohup ./bin/milvus run queryservice > ~/queryservice.out 2>&1 &
echo "starting querynode1"
export QUERY_NODE_ID=1
nohup ./bin/milvus run querynode > ~/querynode1.out 2>&1 &
echo "starting indexservice"
nohup ./bin/milvus run indexservice > ~/indexservice.out 2>&1 &
echo "starting indexnode"
nohup ./bin/milvus run indexnode > ~/indexnode.out 2>&1 &