From f267b5646f874997891df5d92909ae2a48a426b4 Mon Sep 17 00:00:00 2001 From: "peng.xu" Date: Wed, 3 Jul 2019 15:17:28 +0800 Subject: [PATCH] Revert "Merge branch 'integrate_knowhere-0.3.1' into 'branch-0.3.1'" This reverts merge request !152 Former-commit-id: 96413424d145e007f2a6ce1956b4bc57bd880486 --- cpp/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cpp/README.md b/cpp/README.md index b30cdbfa..1b2f507d 100644 --- a/cpp/README.md +++ b/cpp/README.md @@ -1,12 +1,13 @@ ### Compilation #### Step 1: install necessery tools + Install MySQL centos7 : - yum install gfortran qt4 flex bison mysql-devel mysql + yum install gfortran qt4 flex bison mysql-devel ubuntu16.04 : - sudo apt-get install gfortran qt4-qmake flex bison libmysqlclient-dev mysql-client + sudo apt-get install gfortran qt4-qmake flex bison libmysqlclient-dev If `libmysqlclient_r.so` does not exist after installing MySQL Development Files, you need to create a symbolic link: @@ -52,10 +53,10 @@ If you encounter the following error when building: ### Launch server Set config in cpp/conf/server_config.yaml -Add milvus/lib to LD_LIBRARY_PATH +Add milvus/bin/lib to LD_LIBRARY_PATH ``` -export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/milvus/lib +export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/milvus/bin/lib ``` Then launch server with config: -- GitLab