Closed SaeedAILAR closed 8 months ago
Hi,
I can see typo in your create extension command, it is mongo_fdw
but you have written mongo_ldw
.
Even though you have provided the correct name and still the issue is same, then you need to configure and install mongo_fdw extension sources using below command:
To build on POSIX-compliant systems you need to ensure the pg_config executable is in your path when you run make. This executable is typically in your PostgreSQL installation's bin directory. For example:
export PATH=/usr/local/pgsql/bin/:$PATH
make USE_PGXS=1
make USE_PGXS=1 install
Also please refer for more details. https://github.com/EnterpriseDB/mongo_fdw/blob/master/INSTALL.md
Thank you. I thought autogen.sh
did it all, and didn't realise those make
commands needed to be run manually. I ran those and it worked. Thanks.
Yes, I have made a typo mistake in the name.
close
I followed the following steps on Ubuntu 22.04:
Pre-Requisites
Download And Stage
Build MONGO_LDW
The output from
autogen.sh
is lengthy, and included warning messages, but got to the end without error like so:But I try to create the extension in psql I get:
I checked and the file does not exist.
Please help.