mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
2c9e226703
Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
34 lines
831 B
Bash
Executable File
34 lines
831 B
Bash
Executable File
cd ..
|
|
|
|
echo "starting master"
|
|
nohup ./bin/masterservice > ~/masterservice.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 querynode2"
|
|
export QUERY_NODE_ID=2
|
|
nohup ./bin/querynode > ~/querynode2.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 indexservice"
|
|
nohup ./bin/indexservice > ~/indexservice.out 2>&1 &
|
|
|
|
echo "starting indexnode"
|
|
nohup ./bin/indexnode > ~/indexnode.out 2>&1 &
|