新随笔  :: 管理

如何在linux系统(CentOs)下面安装postgresql

Posted on 2020-08-24 16:10  SliverLee  阅读(150)  评论(0编辑  收藏  举报

PostGresql

  本文介绍PostgreSQL的安装和基本用法,供初次使用者上手。安装过程依赖Linux(CentOs7).


 

postgresql的安装非常简单,可以登陆官网查看

 

以下为精简内容

yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm
yum install -y postgresql10-server
/usr/pgsql-10/bin/postgresql-10-setup initdb
systemctl enable postgresql-10
systemctl start postgresql-10