1. 程式人生 > >CentOS6.5安裝postgresql9.6.7筆記

CentOS6.5安裝postgresql9.6.7筆記

postgresql

yum -y install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-centos96-9.6-3.noarch.rpm

yum -y install postgresql96-9.6.7

yum -y install postgresql96-server-9.6.7


service postgresql-9.6 initdb

chkconfig postgresql-9.6 on

service postgresql-9.6 start


登錄


su - postgres

psql

查看庫

\l;

創建庫

create database abc;

切換庫:\c abc;

查看表

\d;


CentOS6.5安裝postgresql9.6.7筆記