* Start standalone version(graph+storage+meta) * add kv for compile/disable test use * fix obj compile * Modify thread usage * fix value set * use shared ptr to avoid lifetime * fix up * fix ret value type * Fix default config * Fix rebase Co-authored-by: Sophie <84560950+Sophie-Xie@users.noreply.github.com> |
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| README.md | ||
| meta-transfer-tools.sh | ||
| nebula-graphd.service | ||
| nebula-metad.service | ||
| nebula-standalone.service | ||
| nebula-storaged.service | ||
| nebula.service | ||
| services.sh | ||
| utils.sh | ||
README.md
Overview
This document handles Nebula Graph installation, and all the operations are done on single hosts.
Firstly, you need to create the config files for the three daemons in the conf directory based on their *.default counterparts.
You could operate on all of the three daemons with scripts/nebula.service:
$ scripts/nebula.service start all
...
$ scripts/nebula.service status all
...
$ scripts/nebula.service stop all
...
$ scripts/nebula.service restart all
...
Or, you could do some of the same action on a specific daemon:
$ scripts/nebula.service start metad # Or, scripts/nebula-metad.service start
...
$ scripts/nebula.service status graphd # Or, scripts/nebula-graphd.service status
...
$ scripts/nebula.service restart storaged # Or, scripts/nebula-storaged.service restart
...