postgresql-9.3安装

postgresql-9.3安装,第1张

概述1.获取安装源 yum install http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-redhat93-9.3-1.noarch.rpm 2.安装 postgresql93 postgresql93-server postgresql93-contrib postgresql93-plpython postgresql93-libs

1.获取安装源

yum install http://yum.postgresql.org/9.3/redhat/rhel-6-x86_64/pgdg-redhat93-9.3-1.noarch.rpm

2.安装

postgresql93 postgresql93-server postgresql93-contrib postgresql93-plpython postgresql93-libs postgresql93-devel

3.修改数据目录为/data/pgdata

vim /var/lib/pgsql/.bash_profile

改为以下内容:

[ -f /etc/profile ] && source /etc/profile

PGDATA=/data/pgdata
export PGDATA

vim /etc/init.d/postgresql-9.3

把PGDATA一行改为:PGDATA=/data/pgdata

mkdir/data/pgdata

chown -Rpostgres:/data/pgdata

chmod 700/data/pgdata

4.初始化数据目录

service postgresql-9.3 initdb

5.加入服务

chkconfig postgresql-9.3 on

6.启动服务

service postgresql-9.3 start


配置参数包含在以下两个文件内:

/data/pgdata/postgresql.conf

/data/pgdata/pg_hba.conf

总结

以上是内存溢出为你收集整理的postgresql-9.3安装全部内容,希望文章能够帮你解决postgresql-9.3安装所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1176650.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存