Hi All,
I’m using Ubuntu 22.04 with GeoServer 2.24.2 (binary installation, not docker), and I’m having trouble installing GDAL.
FROM ubuntu:22.04
sudo apt-get install -y gdal-bin
sudo apt-get install -y libgdal-java
When trying to install, I get the following message about libgdal-java:
“Unable to locate package libgdal-java”
Ubuntu 20.04, according to reports, works, but I have an application that absolutely needs to run on 22.04, a server that will also run GeoServer.
Has anyone had this problem and would know how to solve it?
Thank you in advance for your attention.
Best regards,
Fernando Quadro
Debian/Ubuntu stopped delivering GDAL java bindings some time ago.
A way to get it working now is to build from sources GDAL, making it build the Java bindings as well.
See also this pull request for the GeoServer docker project, you can use it or maybe just steal the build instructions:
geoserver:master
← stacy-rendall:master
opened 01:18AM - 20 Jan 25 UTC
Further notes/discussion: https://osgeo-org.atlassian.net/browse/GEOS-11684
S… ince the base image was changed from Ubuntu to Tomcat it no longer includes GDAL, which is required for GDAL/OGR extensions.
The rationale behind this PR is to enable installing GDAL without affecting (i.e. increasing the size of) the initial image.
This PR:
- adds/documents an `INSTALL_GDAL` environment variable
- prior to installing extensions in `startup.sh`:
- check if INSTALL_GDAL=true
- check if `gdal-bin` is already installed
- modify permissions on `/tmp` to enable apt-get update (initially the directory is not writable, which will cause update to fail)
- update and install gdal-bin, including recommended packages (notably proj)
- restore `/tmp` permissions
Happy to discuss if an alternative approach might be more appropriate.
Cheers
Andrea
Thanks Andrea,
I will check this documentation to apply it in docker.
Best Regards,
Fernando Quadro