# PGSQL安装
sudo yum install -y
sudoyum install -y postgresql15-server
sudo /usr/pgsql-15/bin/postgresql-15-setup initdb
sudo systemctl enable postgresql-15
sudo systemctl start postgresql-15
# 修改数据库目录
- 默认postgreql 安装在/usr/pgsql-14,数据存储目录:/var/lib/pgsql/版本号/data
- 修改systemd : vi /usr/lib/systemd/system/postgresql-15.service
- 修改为Environment=PGDATA=/data/postgresql/data #修改成新的数据库目录
- 要先关闭数据库
- /usr/pgsql-15/bin/postgresql-15-setup initdb
# 重启
- su postgres
- /usr/local/pgsql-15.1/bin/pg_ctl -D /var/lib/pgsql/15/data -l /var/lib/pgsql/15/data/log/postgresql-test start
# 使用
export PATH=$PATH:/usr/local/pgsql-15.1/bin
sudo chown root.postgres /var/tmp
sudo chmod g+wx /var/tmp
psql -p 5435
git clone https://ghproxy.com/https://github.com/timescale/timescaledb.git
git checkout 2.11.x
./bootstrap -DUSE_OPENSSL=0 -DREGRESS_CHECKS=OFF
cd build && make
make install