mirror of https://github.com/citusdata/citus.git
Merge pull request #5332 from citusdata/pg_14_updates
Reflect PG14 changes in the readmepull/5335/head
commit
7bd746b91a
|
@ -47,7 +47,7 @@ why we ask this as well as instructions for how to proceed, see the
|
|||
sudo apt-key add -
|
||||
sudo apt-get update
|
||||
|
||||
sudo apt-get install -y postgresql-server-dev-13 postgresql-13 \
|
||||
sudo apt-get install -y postgresql-server-dev-14 postgresql-14 \
|
||||
autoconf flex git libcurl4-gnutls-dev libicu-dev \
|
||||
libkrb5-dev liblz4-dev libpam0g-dev libreadline-dev \
|
||||
libselinux1-dev libssl-dev libxslt-dev libzstd-dev \
|
||||
|
@ -94,14 +94,14 @@ why we ask this as well as instructions for how to proceed, see the
|
|||
```bash
|
||||
sudo yum update -y
|
||||
sudo yum groupinstall -y 'Development Tools'
|
||||
sudo yum install -y postgresql13-devel postgresql13-server \
|
||||
sudo yum install -y postgresql14-devel postgresql14-server \
|
||||
git libcurl-devel libxml2-devel libxslt-devel \
|
||||
libzstd-devel llvm-toolset-7-clang llvm5.0 lz4-devel \
|
||||
openssl-devel pam-devel readline-devel
|
||||
|
||||
git clone https://github.com/citusdata/citus.git
|
||||
cd citus
|
||||
PG_CONFIG=/usr/pgsql-13/bin/pg_config ./configure
|
||||
PG_CONFIG=/usr/pgsql-14/bin/pg_config ./configure
|
||||
make
|
||||
sudo make install
|
||||
cd src/test/regress
|
||||
|
|
|
@ -81,14 +81,14 @@ Install packages on Ubuntu / Debian:
|
|||
```bash
|
||||
curl https://install.citusdata.com/community/deb.sh > add-citus-repo.sh
|
||||
sudo bash add-citus-repo.sh
|
||||
sudo apt-get -y install postgresql-13-citus-10.2
|
||||
sudo apt-get -y install postgresql-14-citus-10.2
|
||||
```
|
||||
|
||||
Install packages on CentOS / Fedora / Red Hat:
|
||||
```bash
|
||||
curl https://install.citusdata.com/community/rpm.sh > add-citus-repo.sh
|
||||
sudo bash add-citus-repo.sh
|
||||
sudo yum install -y citus102_13
|
||||
sudo yum install -y citus102_14
|
||||
```
|
||||
|
||||
To add Citus to your local PostgreSQL database, add the following to `postgresql.conf`:
|
||||
|
|
Loading…
Reference in New Issue