-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59e37ed
commit 03cd87e
Showing
2 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
...tallation/2.compile-and-install-nebula-graph/4.install-nebula-graph-from-tar.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Install Nebula graph with the tar.gz file | ||
|
||
You can install Nebula Graph by downloading the tar.gz file. | ||
|
||
!!! note | ||
|
||
Nebula Graph provides installing with the tar.gz file starting from version 2.6.0. | ||
|
||
## Installation steps | ||
|
||
1. Download the Nebula Graph tar.gz file using the following address. | ||
|
||
Before downloading, you need to replace `<release_version>` with the version you want to download. | ||
|
||
```bash | ||
//Centos 7 | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.el7.x86_64.tar.gz | ||
//Checksum | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.el7.x86_64.tar.gz.sha256sum.txt | ||
|
||
//Centos 8 | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.el8.x86_64.tar.gz | ||
//Checksum | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.el8.x86_64.tar.gz.sha256sum.txt | ||
|
||
//Ubuntu 1604 | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.ubuntu1604.amd64.tar.gz | ||
//Checksum | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.ubuntu1604.amd64.tar.gz.sha256sum.txt | ||
|
||
//Ubuntu 1804 | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.ubuntu1804.amd64.tar.gz | ||
//Checksum | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.ubuntu1804.amd64.tar.gz.sha256sum.txt | ||
|
||
//Ubuntu 2004 | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.ubuntu2004.amd64.tar.gz | ||
//Checksum | ||
https://oss-cdn.nebula-graph.com.cn/package/<release_version>/nebula-graph-<release_version>.ubuntu2004.amd64.tar.gz.sha256sum.txt | ||
``` | ||
|
||
For example, to download the Nebula Graph {{nebula.branch}} tar.gz file for `CentOS 7.5`, run the following command: | ||
|
||
```bash | ||
wget https://oss-cdn.nebula-graph.com.cn/package/{{nebula.release}}/nebula-graph-{{nebula.release}}.el7.x86_64.tar.gz | ||
``` | ||
|
||
2. Decompress the tar.gz file to the Nebula Graph installation directory. | ||
|
||
```bash | ||
tar -xvzf <tar.gz_file_name> -C <install_path> | ||
``` | ||
|
||
3. Modify the name of the configuration file. | ||
|
||
Enter the decompressed directory, rename the files `nebula-graphd.conf.default`, `nebula-metad.conf.default`, and `nebula-storaged.conf.default` in the subdirectory `etc`, and delete `.default` to apply the default configuration of Nebula Graph. To modify the configuration, see [Configurations](../../5.configurations-and-logs/1.configurations/1.configurations.md). | ||
|
||
So far, you have installed Nebula Graph successfully. | ||
|
||
## Next to do | ||
|
||
Use the `nebula.service` file in the `scripts` directory to start Nebula Graph. For details, see [Manage Nebula Graph Service](../manage-service.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters