Postgresql 安装
#yum install postgresql93-server postgresql93-contrib
#service postgresql-9.3 initdb
// 设置postgresql 自动启动
#chkconfig postgresql-9.3 on
#vi /var/lib/pgsql/9.3/data/pg_hba.conf
(replace "IDent" with "md5")
(new config line)host all all 192.168.1.1(localhost ip)/16 md5
#vi /var/lib/pgsql/9.3/data/postgresql.conf
Listen_addresses = '*'
port = 5432
#su - conversant
$sudo service postgresql-9.3 start
$sudo su - postgres
$psql
postgres=# alter user postgres with password 'qa654321';
postgres=# create database testdb;
$sudo su - postgres
$psql -d testdb-U postgres
testdb=#\i /opt/app/xxxx-Postgresql.sql
$sudo /sbin/iptables -I input -p tcp --dport 5432 -j ACCEPT
$sudo /etc/rc.d/init.d/iptables save
$sudo /etc/init.d/iptables status
退出数据库:\q
修改Postgresql 密码:
http://www.360doc.com/content/13/0822/10/10384031_309039914.shtml
总结以上是内存溢出为你收集整理的PostgreSQL 安装,使用总结全部内容,希望文章能够帮你解决PostgreSQL 安装,使用总结所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)