I am installing Apace AGE by following insulation steps form this :https://theundersurfers.netlify.app/age-installation/
But when I am on this step:
(https://phpout.com/wp-content/uploads/2023/07/0hd1Y.png)
It giving me this error:
(https://phpout.com/wp-content/uploads/2023/07/cDhoG.png)
Please anyone who may help to get it done or any other reference site for installation with step by step guide
Any other website link or a proper answer would be appreciated…
4
Answers
You need to change the branch in the Apache AGE repository to match your Postgres version. Run this command:
After that, try again to install Apache AGE using the
make
command.This article installs version 11 of postgreSQL and Apache AGE master is currently on version 13. So you need to install the AGE master compatible version of postgres. You can do this by changing this step:
After cloning AGE, with this command
move to age directory using
cd age
. Then run this command.And after that you the follow that same blog from this command.
The problem seems to be related to incompatible/different versions of Postgres and Apache Age. Since you currently have Postgresql version 11, you can either install AGE for PG11 by checking out to the PG11 branch before the install steps:
git checkout origin/PG11
.Otherwise, you can upgrade your PG version to 13 and install AGE directly from main which is on the version 13.
Here’s the link to the official documentation.
Additional resources that might help you:
Note: Remember to checkout to relevant branches of AGE while following these tutorials which might be made using earlier versions.