Re: [Geoserver-users] Max legend graphic memory usage exceeded.

2024-06-25 Thread Jody Garnett
I was not aware there was a limit, checking the code for that exception shows it is thrown by something called Tally.java which calculates max memory based on the max memory set aside for WMS requests.

[Geoserver-users] Max legend graphic memory usage exceeded.

2024-06-25 Thread Michael STEIGEMANN via Geoserver-users
Hello, in my geoserver instance the generation of legend graphics does not work anymore. I use the following URL: http://localhost:8080/geoserver/ows?service=WMS=GetLegendGraphic=image%2Fpng=12=12=geodata%3Amylayer==1.3.0_VERSION=1.1.0_OPTIONS=forceLabels%3Aon=564=xxx The errormessage is:

Re: [Geoserver-users] Docker not loading layers

2024-06-25 Thread Kristian Nils Robin Morin via Geoserver-users
25 Jun 08:11:53 ERROR [storage.DefaultStorageFinder] - Found system environment variableGEOSERVER_DATA_DIR set to /opt/geoserver_data/ , *which is not writable* Check your file permissions against the user running geoserver in your container. On Tue, Jun 25, 2024 at 10:33 AM emmexx wrote: >

[Geoserver-users] Docker not loading layers

2024-06-25 Thread emmexx
I'm new to using docker to run geoserver so I could be missing something. I followed the web page on running geoserver with docker. I'm migrating to a new server and to a new geoserver version. My server uses podman instead of docker but I don't think that is the problem. As root I run the

Re: [Geoserver-users] PostgreSQL and PostGIS

2024-06-25 Thread Russ Hore
Have you installed the ostGIS extension? CREATE EXTENSION postgis; If so you can add a Geometry column with; https://postgis.net/docs/AddGeometryColumn.html Set the SRID to what your data is. Then you ST_MakePoint (If it is point data) to update the new column using the data from other

Re: [Geoserver-users] PostgreSQL and PostGIS

2024-06-25 Thread Alexandre Gacon
Hello Jim, To do so, you have first to add a Geometry column to your table (you can be more precise on the type of Geometry by using for example Point as type). You have to define also the SRS of the coordinates. To populate your column you can for example use the ST_MakePoint function using the