TimescaleDB 是一个由 PostgreSQL 提供支持的免费、开源、强大的数据库系统。它是 PostgreSQL 的扩展,专门用于使用 PostgreSQL 分析时间序列数据。TimescaleDB 提供了 NoSQL 和关系数据库系统中最好的。
在 Ubuntu 20.04 LTS Focal Fossa 上安装 TimescaleDB
apt
步骤 1. 首先,通过在终端中运行以下命令,确保所有系统包都是最新的。
sudo apt update sudo apt upgrade
步骤 2. 在 Ubuntu 20.04 上安装 PostgreSQL。
apt
使用以下命令安装 PostgreSQL包:
sudo apt install postgresql-14
安装完成后,登录 PostgreSQL 并设置 Postgres 密码:
su - postgres psql -c "alter user postgres with password 'your-strong-password'"
步骤 3. 在 Ubuntu 20.04 上安装 TimescaleDB。
默认情况下,TimescaleDB 在 Ubuntu 20.04 基础存储库中不可用。现在运行以下命令在您的 Ubuntu 系统上添加 TimescaleDB 存储库:
sh -c "echo 'deb https://packagecloud.io/timescale/timescaledb/ubuntu/ $(lsb_release -c -s) main' > /etc/apt/sources.list.d/timescaledb.list"
最后,通过运行以下命令安装 TimescaleDB:
sudo apt install timescaledb-2-postgresql-14
完成安装后,您需要配置数据库以便可以使用它。最简单的方法是运行脚本:timescaledb-tune
sudo timescaledb-tune --quiet --yes
接下来,重新启动 PostgreSQL 服务以应用配置更改:
sudo systemctl restart postgresql
步骤 4. 创建新数据库 TimescaleDB。
现在我们创建一个新数据库,启用 TimescaleDB,并将数据库连接到它
su - postgres psql CREATE DATABASE idroot_db;
接下来,连接到 idroot_db
数据库:
\c idroot_db CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;
输出:
最后,我们连接到您新创建的数据库:
psql -U postgres -h localhost -d idroot_db
感谢您使用本教程在 Ubuntu 20.04 LTS Focal Fossa 系统上安装 TimescaleDB。如需更多帮助或有用信息,我们建议您查看TimescaleDB 官方网站。
© 版权声明
文章版权归作者所有,未经允许请勿转载。