Skip to content

Commit

Permalink
agentname-fix (#2536)
Browse files Browse the repository at this point in the history
  • Loading branch information
abby-cyber authored Feb 1, 2023
1 parent f1b3a47 commit 3557fb6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs-2.0/backup-and-restore/nebula-br-ent/2.install-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ NebulaGraph Agent 以二进制形式存在各个机器的安装目录中,通
启动 Agent 前,确保已经启动集群中的 Meta 服务,并且 Agent 有对应 NebulaGraph 服务目录和备份目录的读写权限。

```
sudo nohup ./nebula_agent --agent="<agent_node_ip>:8888" --meta="<metad_node_ip>:9559" > nebula_agent.log 2>&1 &
sudo nohup ./agent --agent="<agent_node_ip>:8888" --meta="<metad_node_ip>:9559" > nebula_agent.log 2>&1 &
```

- `--agent`:Agent 所在机器的 IP 地址和访问端口。
Expand All @@ -79,7 +79,7 @@ NebulaGraph Agent 以二进制形式存在各个机器的安装目录中,通
例如:

```
sudo nohup ./nebula_agent --agent="192.168.8.129:8888" --meta="192.168.8.129:9559" --ratelimit=1048576 > nebula_agent.log 2>&1 &
sudo nohup ./agent --agent="192.168.8.129:8888" --meta="192.168.8.129:9559" --ratelimit=1048576 > nebula_agent.log 2>&1 &
```

5. 连接服务并查看 Agent 的运行状态。
Expand Down
4 changes: 2 additions & 2 deletions docs-2.0/backup-and-restore/nebula-br/2.compile-br.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ NebulaGraph Agent 以二进制形式存在各个机器的安装目录中,通
启动 Agent 前,确保已经启动集群中的 Meta 服务,并且 Agent 有对应 NebulaGraph 服务目录和备份目录的读写权限。
```
sudo nohup ./nebula_agent --agent="<agent_node_ip>:8888" --meta="<metad_node_ip>:9559" > nebula_agent.log 2>&1 &
sudo nohup ./agent --agent="<agent_node_ip>:8888" --meta="<metad_node_ip>:9559" > nebula_agent.log 2>&1 &
```
- `--agent`:Agent 所在机器的 IP 地址和访问端口。
Expand All @@ -116,7 +116,7 @@ NebulaGraph Agent 以二进制形式存在各个机器的安装目录中,通
例如:
```
sudo nohup ./nebula_agent --agent="192.168.8.129:8888" --meta="192.168.8.129:9559" --ratelimit=1048576 > nebula_agent.log 2>&1 &
sudo nohup ./agent --agent="192.168.8.129:8888" --meta="192.168.8.129:9559" --ratelimit=1048576 > nebula_agent.log 2>&1 &
```
!!! caution
Expand Down

0 comments on commit 3557fb6

Please sign in to comment.