Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dashboard-deploy-config-change #1494

Merged
merged 1 commit into from
Jul 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion docs-2.0/nebula-dashboard/2.deploy-dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ After the service is started, you can enter `<IP>:8090` in the browser to check
target: "127.0.0.1:8090" // The IP address and port of the gateway service.
prometheus:
target: "127.0.0.1:9090" // The IP address and port of the prometheus service.
graph:
target: "127.0.0.1:19669" // Used to get the running configurations of the Graph service.
storage:
target: "127.0.0.1:19779" // Used to get the running configurations of the Storage service.
nebulaServer:
ip: "192.168.8.143" // The IP address of any Graph service.
port: 9669 // The port of the Nebula Graph.
Expand Down Expand Up @@ -291,7 +295,13 @@ Docker has been installed on the node where Dashboard is deployed.
},
"prometheus":{
"target": "prometheus:9090" # The hostname of the prometheus container and the port of the prometheus service.
}
},
"graph":{
"target": "graphd:19669" # Used to get the running configurations of the Graph service.
},
"storage":{
"target": "graphd:19779" # Used to get the running configurations of the Storage service.
}
},
"nebulaServer": { # The access information of any Graph service.
"ip": "192.168.8.131", # The IP address of the node where the Graph service is deployed.
Expand Down