milvus/scripts/start.sh
cai.zhang a54097708d Adjust the DropIndex logic of the indexservice
Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
2021-04-16 15:37:13 +08:00

31 lines
733 B
Bash
Executable File

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