TECHIES WORLD

For Techs.... Techniques.... Technologies....

BashCpanelLinux

PostgreSQL ERROR: could not access file "pglogical": No such file or directory

ERROR: could not access file "pglogical": No such file or directory

This error happens due to the missing of PostgreSQL extension pglogical.

We can use the following command to install this extension.

In Redhat/Centos systems,

#yum -y install postgresql<VERSION>-pglogical

Where VERSION need to be replaced with the major version of PostgreSQL installed.

In Debian systems,

#apt install postgresql-<VERSION>-pglogical

Where VERSION need to be replaced with the major version of PostgreSQL installed.

That's all…