2021-06-28 16:30:17 +08:00
|
|
|
cd ..
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting rootcoord..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run rootcoord > /tmp/rootcoord.log 2>&1 &
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting datacoord..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run datacoord > /tmp/datacoord.log 2>&1 &
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting datanode..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run datanode > /tmp/datanode.log 2>&1 &
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting proxy..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run proxy > /tmp/proxy.log 2>&1 &
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting querycoord..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run querycoord > /tmp/querycoord.log 2>&1 &
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting querynode..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run querynode > /tmp/querynode.log 2>&1 &
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting indexcoord..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run indexcoord > /tmp/indexcoord.log 2>&1 &
|
|
|
|
|
2021-10-07 18:01:28 +08:00
|
|
|
echo "Starting indexnode..."
|
2021-06-28 16:30:17 +08:00
|
|
|
nohup ./bin/milvus run indexnode > /tmp/indexnode.log 2>&1 &
|