CentOS6.5安装postgresql9.6.7笔记

前端之家收集整理的这篇文章主要介绍了CentOS6.5安装postgresql9.6.7笔记前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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;

原文链接:https://www.f2er.com/centos/374655.html

猜你在找的CentOS相关文章