From 35e8f19a1a1b78188d17b69a6217bb0a908a45e0 Mon Sep 17 00:00:00 2001 From: Abby <78209557+abby-cyber@users.noreply.github.com> Date: Wed, 1 Feb 2023 10:23:34 +0800 Subject: [PATCH] agentname-fix --- docs-2.0/backup-and-restore/nebula-br-ent/2.install-tools.md | 4 ++-- docs-2.0/backup-and-restore/nebula-br/2.compile-br.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs-2.0/backup-and-restore/nebula-br-ent/2.install-tools.md b/docs-2.0/backup-and-restore/nebula-br-ent/2.install-tools.md index e421921bd7a..55e47ceb247 100644 --- a/docs-2.0/backup-and-restore/nebula-br-ent/2.install-tools.md +++ b/docs-2.0/backup-and-restore/nebula-br-ent/2.install-tools.md @@ -69,7 +69,7 @@ In **each machine**, follow these steps: Before starting Agent, make sure that the Meta service has been started and Agent has read and write access to the corresponding NebulaGraph cluster directory and backup directory. ``` - sudo nohup ./nebula_agent --agent=":8888" --meta=":9559" > nebula_agent.log 2>&1 & + sudo nohup ./agent --agent=":8888" --meta=":9559" > nebula_agent.log 2>&1 & ``` - `--agent`: The IP address and port number of Agent. @@ -79,7 +79,7 @@ In **each machine**, follow these steps: For example: ``` - 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. Log into NebulaGraph and then run the following command to view the status of Agent. diff --git a/docs-2.0/backup-and-restore/nebula-br/2.compile-br.md b/docs-2.0/backup-and-restore/nebula-br/2.compile-br.md index 7bd8b731f12..2d60c36e3b7 100644 --- a/docs-2.0/backup-and-restore/nebula-br/2.compile-br.md +++ b/docs-2.0/backup-and-restore/nebula-br/2.compile-br.md @@ -109,7 +109,7 @@ In **each machine**, follow these steps: Before starting Agent, make sure that the Meta service has been started and Agent has read and write access to the corresponding NebulaGraph cluster directory and backup directory. ``` - sudo nohup ./nebula_agent --agent=":8888" --meta=":9559" > nebula_agent.log 2>&1 & + sudo nohup ./agent --agent=":8888" --meta=":9559" > nebula_agent.log 2>&1 & ``` - `--agent`: The IP address and port number of Agent. @@ -119,7 +119,7 @@ In **each machine**, follow these steps: For example: ``` - 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