Centos7.6 postgresqlのインストール
1869 ワード
centos7.6ソースインストールとyumインストールpostgresql
1.インストールpostgresqlのコンパイル
#
yum install - y wget bison flex readline-devel zlib-devel
yum groupinstall "Development tools"
# postgresql
wget https://ftp.postgresql.org/pub/source/v11.5/postgresql-11.5.tar.gz
#
tar -xzvf postgresql-11.5.tar.gz && cd postgresql-11.5
#
./configure --prefix=/opt/pg11/ --with-pgport=1921
#
gmake
#
gmake install
#
/opt/pg11/bin/postgres --version
#
ln -s /opt/pg11/ /opt/pgsql
#
groupadd -g 1000 postgres
useradd -g 1000 -u 1000 postgres
su - postgres
2.yumインストールpostgresql
# yum
yum install https://mirrors.cloud.tencent.com/postgresql/repos/yum/11/redhat/rhel-7.6-x86_64/pgdg-centos11-11-2.noarch.rpm
#
yum install -y postgresql11-server postgresql11-contrib