diff --git a/deploy/standalone-deploy/README.md b/deploy/standalone-deploy/README.md index 3c53f59908..472d6b4a08 100644 --- a/deploy/standalone-deploy/README.md +++ b/deploy/standalone-deploy/README.md @@ -51,6 +51,14 @@ pipeline init --ip 127.0.0.1 --port 9380 ```shell fate_flow start +fate_flow status # make sure fate_flow service is started +``` + +FATE-Flow also provides other instructions like stop and restart, use only if users want to stop/restart fate_flow services. +```shell +# Warning: normal installing process does not need to execute stop/restart instructions. +fate_flow stop +fate_flow restart ``` #### 2.2.1.4 Testing diff --git a/deploy/standalone-deploy/README.zh.md b/deploy/standalone-deploy/README.zh.md index 7ee53f9b25..8b2d445630 100644 --- a/deploy/standalone-deploy/README.zh.md +++ b/deploy/standalone-deploy/README.zh.md @@ -50,6 +50,15 @@ pipeline --ip 127.0.0.1 --port 9380 #### 2.2.1.3 服务启动 ```shell fate_flow start +fate_flow status # 通过该指令确认FATE-Flow服务的状态 +``` + +FATE-Flow还提供了停止服务和重启服务指令,可以在必要时使用: + +```shell +# 注意:正常的部署流程不需要执行stop/restart指令 +fate_flow stop +fate_flow restart ``` #### 2.2.1.4 测试 diff --git a/doc/2.0/quick_start.md b/doc/2.0/quick_start.md index f4945b525d..fe21aea92c 100644 --- a/doc/2.0/quick_start.md +++ b/doc/2.0/quick_start.md @@ -11,6 +11,9 @@ after installing packages successfully, initialize fate_flow service and fate_cl mkdir fate_workspace fate_flow init --ip 127.0.0.1 --port 9380 --home $(pwd)/fate_workspace pipeline init --ip 127.0.0.1 --port 9380 + +fate_flow start +fate_flow status # make sure fate_flow service is started ```