转载自博客
虽然MongoDB官方提供了可执行的MongoDB供下载,但本着开源的工程都自己编译一次,于是从Git上的源码来编译MongoDB,官方的文档都是英文,中文文档找了几个博客,过程写的都不够全(可能是遇到的问题不一样)。在此记录一下本人从源码编译MongoDB的全过程,希望能对有心人有帮助。
环境要求
官方文档docs/building.md中提出的要求如下
- A modern and complete C++11 compiler. One of the following is required:
- VS2015 Update 2 or newer
- GCC 5.3.0
- Clang 3.4 (or Apple XCode 5.1.1 Clang) or newer
- Python 2.7
- SCons 2.3.5 or newer (for MSVC 2015 support)
可知,在centos中需要保证的环境有:
- gcc 5.3.0
- python 2.7
- scons 2.3.5
编译升级gcc
我这台服务器为CentOS-7,上面的gcc版本比较低,版本如下:
[root@localhost gcc-5.3.0]# g++ --version
g++ (GCC) 4.8.5 20150623 (Red Hat 4.8.5-16)
Copyright © 2015 Free Software Foundation, Inc.
本程序是自由软件;请参看源代码的版权声明。本软件没有任何担保;
包括没有适销性和某一专用目的下的适用性担保。
我使用了一个ftp镜像站下载GCC 5.3.0的源码压缩包。 然后进行解压和安装依赖。
解压gcc-5.3.0.tar.gz
# 在/opt/gcc-5.3.0目录中安装gcc
tar -xvf gcc-5.3.0.tar.gz
下载安装依赖,下载安装gcc需要的三个依赖
cd gcc-5.3.0/
./contrib/download_prerequisites (在解压根目录中执行)
注意 上一步下载依赖,需要使用wget命令、解压bz2文件等,确保安装了命令具,安装方法如下:
yum -y install bzip2
yum -y install wget
依赖下载完成后,编译,更新gcc版本
cd ../ && mkdir gcc-build-5.3.0 && cd gcc-build-5.3.0
# configure
../gcc-5.3.0/configure --enable-checking=release --enable-languages=c,c++ --disable-multilib
# 编译
make # 需要等待很久,视机器性能而定
make install
# 切换gcc到新版本
update-alternatives --install /usr/bin/gcc gcc /opt/gcc-5.3.0/gcc-5.3.0
我重新ssh登录后看到更新生效
[root@localhost ~]# g++ --version
g++ (GCC) 5.3.0
Copyright © 2015 Free Software Foundation, Inc.
本程序是自由软件;请参看源代码的版权声明。本软件没有任何担保;
包括没有适销性和某一专用目的下的适用性担保。
安装python、scons
查看python版本,满足要求,不做修改。
[root@localhost gcc-5.3.0]# python -V
Python 2.7.5
安装scons,下载地址,下载scons-3.0.1.tar.gz版本。
# 依赖解决
yum install pcre-devel python-devel
# 解压安装
tar -zxvf scons-3.0.1.tar.gz && cd scons-3.0.1
python setup.py install
验证scons安装是否成功,输入scons -h会显示提示信息。
[root@localhost gcc-5.3.0]# scons -h
usage: scons [OPTION] [TARGET] ...
SCons Options:
-b, -d, -e, -m, -S, -t, -w, --environment-overrides, --no-keep-going,
--no-print-directory, --print-directory, --stop, --touch
Ignored for compatibility.
-c, --clean, --remove Remove specified targets and dependencies.
-C DIR, --directory=DIR Change to DIR before doing anything.
--cache-debug=FILE Print CacheDir debug info to FILE.
--cache-disable, --no-cache
# 以下省略
编译安装MongoDB
从git上下载MongoDB源代码
# 下载源码
git clone git://github.com/mongodb/mongo.git
cd mongo
# 列出所有版本
git tag -l
# 检出 需要安装的版本
git checkout r3.6.3
官方文档中介绍,linux下编译需要安装openssl-devel
On Linux, you will need to install a compiler gcc or clang, as well as glibc headers which are usually included in a package named glibc-devel.
- On Debian and Ubuntu systems, you must install the libssl-dev package to compile with SSL support.
- On Red Hat and CentOS systems, you must install the openssl-devel package to compile with SSL support.
openssl-devel安装命令如下:
yum install openssl openssl-devel
安装python 依赖包,通过在代码根目录中执行如下命令
# 在mongoDB解压根目录中执行
pip install -r buildscripts/requirements.txt
编译MongoDB源代码并安装
注意:本人开始编译所有组件,等待很久以后磁盘空间不够用,退出时编译已占用了12G空间以上,若需要编译所有,请留意磁盘大小。
# 编译所有组件,需要很大磁盘空间,注意虚拟机磁盘大小
scons all
# 编译核心组件 mongod, mongos, shell
scons core
# 安装( 安装到/opt/mongo )
scons --prefix=/opt/mongo install
# 如果需要lib库和include头文件 需要加上 –full 参数如下:
# scons –prefix=/opt/mongo –full install
备注:/usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.21′ not found 的问题请参考
https://itbilu.com/linux/management/NymXRUieg.html