标签:
1. 安装PostgreSQL源
# yum install http://yum.postgresql.org/9.4/redhat/rhel-6-x86_64/pgdg-redhat94-9.4-1.noarch.rpm
在添加源的步骤中并没有太多的区别,主要是源的地址有一定的变化
执行安装命令
# yum install postgresql94-server postgresql94-contrib
验证是否安装成功
# rpm -aq| grep postgres
执行结果如下
postgresql94-libs-9.4.1-1PGDG.rhel7.x86_64 postgresql94-server-9.4.1-1PGDG.rhel7.x86_64 postgresql94-9.4.1-1PGDG.rhel7.x86_64 postgresql94-contrib-9.4.1-1PGDG.rhel7.x86_64
2. 初始化数据库
# service postgresql-9.4 initdb
3. 启动服务并设置为开机启动
# service postgresql-9.4 start
# chkconfig postgresql-9.4 --level 35 on
4. 开放防火墙端口
vi /etc/sysconfig/iptables
按下I进入输入模式,在文件中加入一下语句
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5432 -j ACCEPT -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
输入完成后按ESC退出编辑模式,输入:wq退出VI编辑界面。
重启防火墙服务
# service iptables restart
5. 访问PostgreSQL
# su - postgres
-bash-4.2$
-bash-4.2$ psql
postgres=#
设置postgres用户密码
postgres=# \password postgres
密码采用默认 postgres
标签:
原文地址:http://www.cnblogs.com/wuling129/p/4652025.html