PostgreSQL及TimescaleDB插件安装过程
# 安装PostgreSQL
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
sudo apt-get update
sudo apt-get -y install postgresql postgresql-contrib
# 启动PostgreSQL服务
sudo service postgresql start
# 切换到postgres用户
sudo -i -u postgres
# 创建TimescaleDB扩展
psql -c "CREATE EXTENSION IF NOT EXISTS timescaledb CASCADE;"
# 为超级用户授权TimescaleDB权限
psql -c "GRANT ALL PRIVILEGES ON DATABASE timescaledb TO postgres;"
# 初始化TimescaleDB(仅首次安装时需要)
timescaledb-tune
# 退出postgres用户
exit
这段代码展示了如何在Ubuntu系统上安装PostgreSQL,并为其安装TimescaleDB扩展的过程。代码首先添加PostgreSQL的官方仓库,然后更新软件包列表并安装PostgreSQL。之后,启动PostgreSQL服务并切换到postgres用户。接下来,在postgres用户的命令行中,创建TimescaleDB扩展,并为超级用户授予其相应的权限。最后,如果是首次安装TimescaleDB,运行timescaledb-tune工具来优化数据库配置。
评论已关闭