跳转至

使用tar.gz文件安装NebulaGraphGraph

用户可以下载打包好的tar.gz文件快速安装NebulaGraph。

Note

NebulaGraph从2.6.0版本起提供tar.gz文件。

操作步骤Graph

  1. 使用如下地址下载NebulaGraph的tar.gz文件。

    下载前需将<release_version>替换为需要下载的版本。

    //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
    

    例如,要下载适用于CentOS 7.5的NebulaGraph v2.6.0 tar.gz文件,运行以下命令:

    wget https://oss-cdn.nebula-graph.com.cn/package/2.6.0/nebula-graph-2.6.0.el7.x86_64.tar.gz
    
  2. 解压tar.gz文件到NebulaGraph安装目录。

    tar -xvzf <tar.gz_file_name> -C <install_path>
    
    • tar.gz_file_name表示tar.gz文件的名称。
    • install_path表示安装路径。

    例如:

    tar -xvzf nebula-graph-2.6.0.el7.x86_64.tar.gz -C /home/joe/nebula/install
    
  3. 修改配置文件名以应用配置。

    进入解压出的目录,将子目录etc中的文件nebula-graphd.conf.defaultnebula-metad.conf.defaultnebula-storaged.conf.default重命名,删除.default,即可应用NebulaGraph的默认配置。如需修改配置,参见Graph。

至此,NebulaGraph安装完毕。

下一步Graph

使用scripts目录中的nebula.service文件启动NebulaGraph,详情参见Graph。


最后更新: November 1, 2021
Back to top