Skip to content

Commit

Permalink
rich doc to fix env dependence "not found" (#316)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shlpeng authored Jul 26, 2022
1 parent 5a2e7df commit 52c2059
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ ldd mysqld
ldd mysql
```
如果检查返回有关键字"not found",说明缺少文件,需要安装对应的依赖包。

我们可以参考如下链接寻找所需依赖包:
https://pkgs.org/search/?q=libzstd.so.1 (这里以libzstd.so.1为例说明)
会看到搜索结果为我们列举了不同系统版本下对应的依赖(系统版本的查看可以通过执行"cat /proc/version"等命令查看)
;举例来说如果系统版本是"amazon linux2" ;那么安装依赖的命令是
```shell
sudo yum install libzstd
```

## 修改配置文件
```shell
cd /stonedb56/install/
Expand Down

0 comments on commit 52c2059

Please sign in to comment.