1 Answer
- Newest
- Most votes
- Most comments
0
Hi Pontem.
Please check the following commands to upgrade your extensions:
ALTER EXTENSION extension_name UPDATE TO 'new_version';
For the list of supported versions of PostgreSQL extensions, see Supported PostgreSQL extension versions.
To list your currently installed extensions, use the PostgreSQL pg_extension catalog in the following command.
SELECT * FROM pg_extension;
To view a list of the specific extension versions that are available for your installation, use the PostgreSQL pg_available_extension_versions view in the following command.
SELECT * FROM pg_available_extension_versions;
After setting the desired version of your extensions, run again:
SELECT postgis_extensions_upgrade();
And manually reboot your instance. For more information here is the upgrade page in the documentation.
I hope this helps.
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated 3 months ago

Hi, I have already tried these things. I have updated my post so it is more clear. Is there something I am missing?
Unfortunately, I can't think of anything else. I would recommend you open a support case with AWS Support so they check the logs of the upgrade and try to determine the exact cause of the issue.