Re: how to upgrade production PostgreSQL from 9.4 to 11.3

From: Andreas Kretschmer <andreas(at)a-kretschmer(dot)de>
To: Rahul Chordiya <rahulchordiya(at)gmail(dot)com>, pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: how to upgrade production PostgreSQL from 9.4 to 11.3
Date: 2019-06-12 13:31:35
Message-ID: 9eaf12ec-0e15-6847-1df8-12e53190d7da@a-kretschmer.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Am 12.06.19 um 14:50 schrieb Rahul Chordiya:
> postgres=#
> postgres=# select subscription_name, status FROM
> pglogical.show_subscription_status();
>  subscription_name | status
> -------------------+--------
> (0 rows)
>
> postgres=# select pglogical.create_subscription(subscription_name :=
> 'subscription1', provider_dsn := 'host=10.101.40.70 port=5432
> dbname=registration user=repuser password=password', replication_sets
> := '{my_set}');
> *ERROR:  could not fetch remote node info: ERROR:  schema "pglogical"
> does not exist*
>
> What should I do?
>

you have create the replication set (on the provider) in the
postgres-database, but now you referencing to an other database,
registration. There isn't this replication set defined.

Regards, Andreas

--
2ndQuadrant - The PostgreSQL Support Company.
www.2ndQuadrant.com

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Avinash Kumar 2019-06-12 13:52:05 Re: how to upgrade production PostgreSQL from 9.4 to 11.3
Previous Message Rahul Chordiya 2019-06-12 11:33:16 how to upgrade production PostgreSQL from 9.4 to 11.3