1

我正在安装 Bucardo 以在 openSUSE Leap 42.3 上复制我的 Postgres 服务器 (10.1),并且我已经成功编译了 Bucardo 的可执行文件。当我尝试bucardo install并将参数修改为:

host:<none>
port:5432
user:aSuperUser
database:bucardo
piddir:/tmp/bucardo (already created)

布卡多说:Postgres version is 4.8. Bucardo requires 8.1 or higher.这怎么会发生?我安装了 postgres 10,而不是 4.8。我还通过select version();and 验证了版本,我的机器上只有一个 postgres 安装。

4

1 回答 1

1

它似乎在master中修复。bucardo-general邮件列表中有一个线程,说明您可以自己在 bucardo 脚本中进行一些更改或应用差异:

diff --git a/bucardo b/bucardo index e1816f1..8e433ef 100755
--- a/bucardo
+++ b/bucardo @@ -8979,7 +8979,7 @@ sub install {
         }
     }

-    if ($res !~ /(\d+)\.(\d+)(\S+)/) {
+    if ($res !~ /(\d+)\.(\d+)/) {
         print "-->Sorry, unable to connect to the database\n\n";
         warn $delayed_warning;
         exit 1 if $bcargs->{batch}; @@ -8988,10 +8988,7 @@ sub install {

     ## At this point, we assume a good connection
     ## Assign the version variables
-    my ($maj,$min,$rev) = ($1,$2,$3);
-    ## We need to be able to handle things such as 9.2devel
-    $rev =~ s/^\.//;
-    $rev =~ s/(\d+)\.\d+/$1/;
+    my ($maj,$min) = ($1,$2);

     $QUIET or print "Postgres version is: $maj.$min\n";

bucardo 脚本在/usr/local/bin/bucardo其中并且没有写入权限,因此您必须更改它。

于 2018-03-04T19:15:39.697 回答