milvus/INSTALL.md

163 lines
3.6 KiB
Markdown
Raw Normal View History

# Install Milvus from Source Code
2019-11-28 17:18:01 +08:00
- [Build from source](#build-from-source)
- [Compile Milvus on Docker](#compile-milvus-on-docker)
2019-11-28 17:15:21 +08:00
If you encounter any problems/issues compiling Milvus from source, please refer to [Troubleshooting](#troubleshooting).
2019-11-28 17:15:21 +08:00
## Build from source
### Requirements
- Ubuntu 18.04 or higher
2019-11-19 11:49:05 +08:00
If your operating system is not Ubuntu 18.04 or higher, we recommend you to pull a [docker image of Ubuntu 18.04](https://docs.docker.com/install/linux/docker-ce/ubuntu/) as your compilation environment.
- GCC 7.0 or higher to support C++17
- CMake 3.12 or higher
2019-11-28 17:15:21 +08:00
##### For GPU-enabled version, you will also need:
- CUDA 10.0 or higher
- NVIDIA driver 418 or higher
2019-11-28 17:15:21 +08:00
### Compilation
2019-11-28 17:15:21 +08:00
#### Step 1 Install dependencies
```shell
$ cd [Milvus root path]/core
$ ./ubuntu_build_deps.sh
```
2019-11-28 17:15:21 +08:00
#### Step 2 Build
```shell
$ cd [Milvus root path]/core
$ ./build.sh -t Debug
or
$ ./build.sh -t Release
2019-11-13 16:18:18 +08:00
```
2019-11-28 17:15:21 +08:00
By default, it will build CPU-only version. To build GPU version, add `-g` option
2019-11-15 17:44:38 +08:00
```shell
$ ./build.sh -g
```
2019-11-15 17:44:38 +08:00
If you want to know the complete build options, run
```shell
$./build.sh -h
```
When the build is completed, all the stuff that you need in order to run Milvus will be installed under `[Milvus root path]/core/milvus`.
2019-11-28 17:15:21 +08:00
### Launch Milvus server
```shell
$ cd [Milvus root path]/core/milvus
```
Add `lib/` directory to `LD_LIBRARY_PATH`
2019-11-15 17:44:38 +08:00
```shell
$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:[Milvus root path]/core/milvus/lib
```
Then start Milvus server:
2019-11-15 17:44:38 +08:00
```shell
$ cd scripts
$ ./start_server.sh
```
To stop Milvus server, run:
```shell
$ ./stop_server.sh
```
2019-11-28 17:15:21 +08:00
## Compile Milvus on Docker
2019-12-03 11:23:44 +08:00
With the following Docker images, you should be able to compile Milvus on any Linux platform that run Docker. To build a GPU supported Milvus, you neeed to install [NVIDIA Docker](https://github.com/NVIDIA/nvidia-docker/) first.
2019-11-28 17:15:21 +08:00
2019-11-28 17:34:45 +08:00
### Step 1 Pull Milvus Docker images
2019-11-28 17:15:21 +08:00
Pull CPU-only image:
```shell
2019-11-28 18:20:57 +08:00
$ docker pull milvusdb/milvus-cpu-build-env:v0.6.0-ubuntu18.04
2019-11-28 17:15:21 +08:00
```
Pull GPU-enabled image:
```shell
2019-11-28 18:20:57 +08:00
$ docker pull milvusdb/milvus-gpu-build-env:v0.6.0-ubuntu18.04
2019-11-28 17:15:21 +08:00
```
2019-11-28 17:34:45 +08:00
### Step 2 Start the Docker container
2019-11-28 17:15:21 +08:00
Start a CPU-only container:
```shell
2019-11-28 18:20:57 +08:00
$ docker run -it -p 19530:19530 -d milvusdb/milvus-cpu-build-env:v0.6.0-ubuntu18.04
2019-11-28 17:15:21 +08:00
```
Start a GPU container:
```shell
$ docker run --runtime=nvidia -it -p 19530:19530 -d milvusdb/milvus-gpu-build-env:v0.6.0-ubuntu18.04
2019-11-28 17:15:21 +08:00
```
To enter the container:
```shell
2019-11-28 18:20:57 +08:00
$ docker exec -it [container_id] bash
2019-11-28 17:15:21 +08:00
```
2019-11-28 17:34:45 +08:00
### Step 3 Download Milvus source code
2019-11-28 17:15:21 +08:00
Download Milvus source code:
```shell
$ cd /home
2019-12-02 15:24:15 +08:00
$ wget https://github.com/milvus-io/milvus/archive/0.6.0.tar.gz
2019-11-28 17:15:21 +08:00
```
2019-12-02 15:24:15 +08:00
Extract the source package:
2019-11-28 17:15:21 +08:00
```shell
2019-12-02 15:24:15 +08:00
$ tar xvf ./v0.6.0.tar.gz
2019-11-28 17:15:21 +08:00
```
2019-11-28 17:33:52 +08:00
The source code is extracted into a folder called `milvus-0.6.0`. To enter its core directory:
```shell
$ cd ./milvus-0.6.0/core
```
2019-11-28 17:34:45 +08:00
### Step 4 Compile Milvus in the container
2019-11-28 17:15:21 +08:00
If you are using a CPU-only image, compile it like this:
```shell
$ ./build.sh -t Release
```
2019-11-28 17:33:52 +08:00
If you are using a GPU-enabled image, you need to add a `-g` parameter:
2019-11-28 17:15:21 +08:00
```shell
$ ./build.sh -g -t Release
```
Then start Milvus server
```shell
$ ./start_server.sh
```
## Troubleshooting
1. If you encounter the following error when compiling:
`protocol https not supported or disabled in libcurl`.
First, make sure you have `libcurl4-openssl-dev` installed in your system.
Then try reinstalling the latest CMake from source with `--system-curl` option:
2019-11-28 17:36:21 +08:00
```shell
$ ./bootstrap --system-curl
$ make
$ sudo make install
```
2019-12-02 11:47:13 +08:00
If the `--system-curl` command doesn't work, you can also reinstall CMake in **Ubuntu Software** on your local computer.