2019-04-14 12:29:20 +00:00
|
|
|
### Compilation
|
|
|
|
#### Step 1: install necessery tools
|
2019-04-14 12:21:07 +00:00
|
|
|
|
2019-04-23 02:10:20 +00:00
|
|
|
centos7 :
|
2019-07-04 06:47:23 +00:00
|
|
|
yum install gfortran qt4 flex bison mysql-devel mysql
|
2019-04-23 02:10:20 +00:00
|
|
|
|
|
|
|
ubuntu16.04 :
|
2019-07-04 06:47:23 +00:00
|
|
|
sudo apt-get install gfortran qt4-qmake flex bison libmysqlclient-dev mysql-client
|
2019-07-17 05:48:29 +00:00
|
|
|
|
|
|
|
cd scripts && sudo ./requirements.sh
|
2019-06-24 08:44:05 +00:00
|
|
|
|
|
|
|
If `libmysqlclient_r.so` does not exist after installing MySQL Development Files, you need to create a symbolic link:
|
|
|
|
|
|
|
|
```
|
|
|
|
sudo ln -s /path/to/libmysqlclient.so /path/to/libmysqlclient_r.so
|
|
|
|
```
|
2019-04-14 12:21:07 +00:00
|
|
|
|
2019-06-12 03:05:33 +00:00
|
|
|
#### Step 2: build(output to cmake_build folder)
|
2019-06-24 08:44:05 +00:00
|
|
|
|
2019-06-14 09:29:29 +00:00
|
|
|
cmake_build/src/milvus_server is the server
|
2019-04-14 12:29:20 +00:00
|
|
|
|
2019-08-14 06:44:50 +00:00
|
|
|
cd [sourcecode path]/cpp/thirdparty
|
|
|
|
git clone git@192.168.1.105:megasearch/knowhere.git
|
|
|
|
cd knowhere
|
|
|
|
./build.sh -t Debug
|
|
|
|
or ./build.sh -t Release
|
2019-07-04 06:47:23 +00:00
|
|
|
|
2019-04-14 12:21:07 +00:00
|
|
|
cd [sourcecode path]/cpp
|
|
|
|
./build.sh -t Debug
|
2019-08-14 06:44:50 +00:00
|
|
|
or ./build.sh -t Release
|
2019-06-12 03:05:33 +00:00
|
|
|
|
|
|
|
If you encounter the following error when building:
|
|
|
|
`protocol https not supported or disabled in libcurl`
|
|
|
|
|
|
|
|
1. Install libcurl4-openssl-dev
|
|
|
|
|
|
|
|
2. Install cmake 3.14:
|
|
|
|
|
|
|
|
```
|
|
|
|
./bootstrap --system-curl
|
|
|
|
make
|
|
|
|
sudo make install
|
|
|
|
```
|
|
|
|
|
2019-04-14 12:29:20 +00:00
|
|
|
#### To build unittest:
|
2019-06-12 03:05:33 +00:00
|
|
|
|
2019-04-14 12:21:07 +00:00
|
|
|
./build.sh -u
|
|
|
|
or
|
|
|
|
./build.sh --unittest
|
2019-06-12 03:05:33 +00:00
|
|
|
|
2019-06-28 10:25:57 +00:00
|
|
|
#### To run code coverage
|
|
|
|
|
|
|
|
apt-get install lcov
|
|
|
|
./build.sh -u -c
|
|
|
|
|
2019-05-15 09:28:02 +00:00
|
|
|
### Launch server
|
2019-04-14 12:21:07 +00:00
|
|
|
Set config in cpp/conf/server_config.yaml
|
2019-04-14 12:29:20 +00:00
|
|
|
|
2019-07-04 06:47:23 +00:00
|
|
|
Add milvus/lib to LD_LIBRARY_PATH
|
2019-06-30 07:58:22 +00:00
|
|
|
|
|
|
|
```
|
2019-07-04 06:47:23 +00:00
|
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/milvus/lib
|
2019-06-30 07:58:22 +00:00
|
|
|
```
|
|
|
|
|
2019-05-15 09:28:02 +00:00
|
|
|
Then launch server with config:
|
2019-04-18 09:26:03 +00:00
|
|
|
cd [build output path]
|
|
|
|
start_server.sh
|
|
|
|
stop_server.sh
|
2019-04-14 11:59:17 +00:00
|
|
|
|
2019-05-15 09:28:02 +00:00
|
|
|
### Launch test_client(only for debug)
|
2019-08-14 06:44:50 +00:00
|
|
|
If you want to test remote api, you can run sdk example.
|
|
|
|
[build output path]/sdk/examples/grpcsimple/sdk_simple
|