免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3222 | 回复: 0
打印 上一主题 下一主题

postgresql-slony-I同步复制配置步骤 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-02-20 17:30 |只看该作者 |倒序浏览

                主数据库: 172.16.254.21 端口:5432
从数据库: 172.16.254.22 端口:5432
步骤1:主从均安装slon
      apt-get install slon-bin
步骤2:主从数据库配置权限,创建语言。
在主数据库中   vi /etc/postgresql/8.3/node/pg_hba.conf
添加一条记录    host    all         repl         172.16.254.22/32  md5
在主从数据库均执行以下操作:
   shell>psql
   node=#create role repl password '123456' login superuser
   #创建用户repl,赋予超级用户权限
   node=# use node;
   node=# create language plpgsql;
   #创建语言plpgsql
步骤3:备份主数据库至从数据库并恢复
   #在主数据库备份要复制的数据库
   pg_dump node > node_20100220.dmp
   #在从库恢复数据库node   
   postgres=#create database node;
   postgres=#\q
   shell>psql node > /export/scripts/master.log &
    $SLON $CLUSTER_NAME "$SLAVE" >> /export/scripts/slave.log &
}
stop()
{
  #  killall slon
     kill -9 `ps axu|grep 'dbname=node' |grep -v grep|awk '{print $2}'`
}
case $1 in
    'install')
        install
        ;;
    'uninstall')
        uninstall
        ;;
    'start')
        start
        ;;
    'stop')
        stop
        ;;
    *)
        echo "usage: $0 {install|uninstall|start|stop} "
        ;;
esac
步骤5:启动
./replication start
步骤6:测试
1.在主数据库的空表public.hxf中添加一条记录
insert into hxf(uid,uname) select 1,'huangxifeng';
2.在主数据库中看到有一条记录
node=# select * from hxf;
uid |    uname   
-----+-------------
   1 | huangxifeng
(1 row)
3.在从数据库中看到有一条记录
node=# select * from hxf;
uid |    uname   
-----+-------------
   1 | huangxifeng
(1 row)
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/66215/showart_2182947.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP