[技术干货] 时序数据库timescaleDB安装
本环境在Centos7.5采用编译安装的方式,主要介绍PostgreSQL 11.7,TimescaleDB 1.6.1,cmake3.8.2 PostgreSQL编译安装需要cmake3.4以上的版本 TimescaleDB目前只支持PostgreSQL 9.6.3 +,10.9 +或11.4+ 一、postgresql11部署 1、安装cmake 解压cmake-v3.8.2.zip [root@TimescaleDB tmp]# unzip cmake-v3.8.2.zip [root@TimescaleDB tmp]# cd cmake-v3.8.2 安装gcc++ 后,再安装cmake [root@TimescaleDB cmake-v3.8.2]# yuminstall -y gcc* [root@TimescaleDB cmake-v3.8.2]# ./bootstrap && make && makeinstall [root@TimescaleDB cmake-v3.8.2]# ln -s/usr/local/bin/cmake /usr/bin/cmake 2、安装postgresq 软件包链接: https://ftp.postgresql.org/pub/source/v11.7/ 解压postgresql-11.7.tar.gz [root