首先要安装 postgresql。
查看是否安装了 timescaledb 插件
进入 postgre 命令行,输入命令反斜杠 dx:
postgres=# \dx
List of installed extensions
Name | Version | Schema | Description
---------+---------+------------+------------------------------
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
(1 row)
这说明目前还还没有安装 timescaledb 插件。
安装 timescaledb
sudo add-apt-repository ppa:timescale/timescaledb-ppa -y
sudo apt update
sudo apt install timescaledb-postgresql-10 -y
修改配置
打开文件 /etc/postgresql/10/main/postgresql.conf
在最后加上
shared_preload_libraries = 'timescaledb'
重启 postgresql
重启生效:
sudo service postgresql restart
启用 timescaledb 扩展
进入 postgresql 命令行,执行:
CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
参考
- https://www.digitalocean.com/community/tutorials/how-to-install-postgresql-on-ubuntu-20-04-quickstart
- https://www.atlantic.net/vps-hosting/how-to-install-timescaledb-on-ubuntu-18-04/
微信关注我哦 👍
我是来自山东烟台的一名开发者,有感兴趣的话题,或者软件开发需求,欢迎加微信 zhongwei 聊聊, 查看更多联系方式