centos610安装postgresql
作者:互联网
安装仓库依赖:
yum install https://download.postgresql.org/pub/repos/yum/11/redhat/rhel-6-x86_64/pgdg-centos11-11-2.noarch.rpm
客户端安装包安装:
yum install postgresql11
服务端安装包安装:
yum install postgresql11-server
初始数据库:
service postgresql-11 initdb
设置开机启动
chkconfig postgresql-11 on
启动服务
service postgresql-11 start
#初始化数据库
#如果需要重新初始化,删除目录/var/lib/pgsql/11/data/即可
service postgresql-11 initdb
#服务开机启动
chkconfig postgresql-11 on
#启动服务
service postgresql-11 start
标签:centos610,11,postgresql,service,yum,install,安装 来源: https://www.cnblogs.com/oumi/p/11598474.html