centos7安装pgsql后的遇到的初始化问题解决方法
安装centos7后,新安装了一些其他软件,先安装下postgresql。安装postgresql步骤:
1、用yum直接安装
#yum install postgresql
2、依赖包和服务也安装下
#yum installl postgresql-devel postgresql-server
3、初始化postgresql数据库
#service postgresql initdb
#chkconfig postgresql on
4、修改下postgresql数据库默认的用户的密码
#passwd postgres
5、启动postgresql服务器
#systemctl start postgresql.service
6、正常情况下就可以正常使用postgresql数据库了
页:
[1]