Skip to content

Commit

Permalink
mod: code
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolaCage committed Jan 18, 2022
1 parent 7ffcf41 commit 78cff29
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions DEPLOY.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,19 @@ Attention: the file under these packages is compiled under Linux environment, ca
port: 9669, // change to running nebula graph port
},
```

- Modify proxy setting: `./vendors/config-release.yaml`
```
port: 7003
proxy:
gateway:
target: "127.0.0.1:8090" // change gateway service proxy
prometheus:
target: "127.0.0.1:9091" // change prometheus service proxy
```
- Start:
```bash
$ cd nebula-graph-dashboard
$ npm run start
$ ./dashboard &
```
- service address: http://127.0.0.1:7003

Expand All @@ -94,8 +103,7 @@ $ kill $(lsof -t -i :9200) # stop nebula-stats-exporter service
$ kill $(lsof -t -i :9100) # stop node-exporter service
$ kill $(lsof -t -i :9090) # stop prometheus service
$ kill $(lsof -t -i :8090) # stop nebula-http-gateway
$ cd nebula-graph-dashboard
$ npm run stop # stop nebula-graph-dashboard
$ kill $(lsof -t -i :7003) # stop nebula-graph-dashboard
```


0 comments on commit 78cff29

Please sign in to comment.