安装EPEL仓库(安装数据库有些包依赖EPEL仓库)
1 | yum install epel-release |
安装PostgreSQL仓库
1 | yum install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm |
安装PostgreSQL 11
1 | yum install postgresql11-server |
初始化数据库
1 | /usr/pgsql-11/bin/postgresql-11-setup initdb |
修改配置文件允许远程连接
1 | vi /var/lib/pgsql/11/data/postgresql.conf |
启动PostgreSQL服务
1 | systemctl enable postgresql-11 |
修改数据库账户postgres默认密码
1 | su - postgres |
安装TimeScaleDB插件
安装TimeScaleDB
1 | tee /etc/yum.repos.d/timescale_timescaledb.repo <<EOL |