博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单机环境搭建Postgres-XC开发测试环境(续)
阅读量:6136 次
发布时间:2019-06-21

本文共 1429 字,大约阅读时间需要 4 分钟。

  hot3.png

昨天还有个后续步骤忘记写上, 注册节点

$ psql -p 7004 postgres# create node coord2 with (type = 'coordinator', host = 'localhost', port = 7005);# create node datanode1 with (type = 'datanode', host = 'localhost', port = 7006);# create node datanode2 with (type = 'datanode', host = 'localhost', port = 7007);# \q$$ psql -p 7005 postgres# create node coord1 with (type = 'coordinator', host = 'localhost', port = 7004);# create node datanode1 with (type = 'datanode', host = 'localhost', port = 7006);# create node datanode2 with (type = 'datanode', host = 'localhost', port = 7007);# \q$
 

关机

首先关闭内部连接:

/usr/local/xc-pgsql/bin/psql -p 7004 -c 'CLEAN CONNECTION TO ALL FOR DATABASE postgres' postgres/usr/local/xc-pgsql/bin/psql -p 7005 -c 'CLEAN CONNECTION TO ALL FOR DATABASE postgres' postgres

然后按照协调器、数据节点、GTM的顺序依次关闭:

/usr/local/xc-pgsql/bin/pg_ctl stop -Z coordinator -D /home/quanzl/xc/coord1/usr/local/xc-pgsql/bin/pg_ctl stop -Z coordinator -D /home/quanzl/xc/coord2/usr/local/xc-pgsql/bin/pg_ctl stop -Z datanode -D /home/quanzl/xc/datanode1/usr/local/xc-pgsql/bin/pg_ctl stop -Z datanode -D /home/quanzl/xc/datanode2/usr/local/xc-pgsql/bin/gtm_ctl stop -Z gtm -D /home/quanzl/xc/gtm

然后连接测试,遇到了“ERROR:  Failed to get pooled connections”,网上有人说是防火墙或者HBA的设置问题,我是在本地运行,并且都是以localhost连接,可以排除HBA。重新编译源代码,打开debug开关(--enable-debug),重新安装运行,查看详细的日志输出。

欲知后事如何,请听下回分解。

我还没折腾到底,一边尝试一边记录,解决不了的可能性也是很大的,请耐心等待。

转载于:https://my.oschina.net/quanzl/blog/424584

你可能感兴趣的文章
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>
使用FMDB最新v2.3版本教程
查看>>
SSIS从理论到实战,再到应用(3)----SSIS包的变量,约束,常用容器
查看>>
STM32启动过程--启动文件--分析
查看>>
垂死挣扎还是涅槃重生 -- Delphi XE5 公布会归来感想
查看>>
淘宝的几个架构图
查看>>
Android扩展 - 拍照篇(Camera)
查看>>
JAVA数组的定义及用法
查看>>
充分利用HTML标签元素 – 简单的xtyle前端框架
查看>>
设计模式(十一):FACADE外观模式 -- 结构型模式
查看>>
iOS xcodebuile 自动编译打包ipa
查看>>
程序员眼中的 SQL Server-执行计划教会我如何创建索引?
查看>>
cmake总结
查看>>
数据加密插件
查看>>
linux后台运行程序
查看>>
win7 vs2012/2013 编译boost 1.55
查看>>