本文介绍了如何在 Centos 6.5 上安装 MonetDB?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 Centos 6.5 上安装 MonetDB.

I would like to install MonetDB on Centos 6.5.

MonetDB 网站介绍了如何安装 Debian/Ubuntu/Fedora 发行版.

MonetDB website describes how to install for Debian / Ubuntu / Fedora distributions.

我在 Centos 6.5 上有一个服务器(我不完全确定它应该与哪个 Fedora 发行版进行比较).

I've a server on Centos 6.5 (and I'm not entirely sure to which Fedora distribution this should compare with).

显然我想安装最新的 MonetDB 二进制文件:我宁愿避免从源代码安装(除非绝对必要).

Obviously I would like to install the latest binaries of MonetDB: I would rather avoid to install from source (unless strictly necessary).

我该怎么做?

推荐答案

更新:我们现在还提供 CentOS RPM:https://www.monetdb.org/downloads/epel/

Update: We now also provide CentOS RPMs: https://www.monetdb.org/downloads/epel/

我在 CentOS 6.5 VM 上尝试过,步骤如下.只需下载一个 tarball 版本(例如 https://www.monetdb.org/downloads/sources/Oct2014-SP2/MonetDB-11.19.9.tar.xz)然后

I tried this on a CentOS 6.5 VM, the steps follow below. Simply download a tarball release (e.g. https://www.monetdb.org/downloads/sources/Oct2014-SP2/MonetDB-11.19.9.tar.xz) and then

sudo yum install gcc bison openssl-devel pcre-devel libxml2-devel
tar xvf MonetDB-*.tar.*
cd MonetDB-*
./configure
make -j
sudo make install

应该这样做,您应该能够继续http://www.monetdb.org/Documentation/UserGuide/Tutorial 从那里.最后一点,在 ./configure 步骤中,注意最后一行sql is enabled",如果它不存在,它会告诉你缺少哪个依赖项.通常,可以使用 yum(libxy-devel 软件包)安装它们.

That should do it, you should be able to continue with http://www.monetdb.org/Documentation/UserGuide/Tutorial from there. One final note, in the ./configure step, watch out for the line "sql is enabled" towards the end, if it is not there, it will tell you which dependency is missing. Usually, they can be installed using yum (libxy-devel packages).

这篇关于如何在 Centos 6.5 上安装 MonetDB?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-09 06:48