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] Layer preview error

2024-06-20 Thread Russ Hore
You can update the Geom column to set an SRID. Under Postgis it is ST_SetSRID(Geom,srid). Not sure about SQLServer Russ > On 20 Jun 2024, at 11:15, Cristian Apostol wrote: > > Hello, > > I have a layer that is coming from a SQL Server Database, the database has > been l

Re: [Geoserver-users] Enable Jetty Logs

2024-05-14 Thread Russ Hore
2.13 is very old? Are you sure that is the right version you are using? Russ > On 14 May 2024, at 06:54, Oscar Diago Alonso via Geoserver-users > wrote: > > Good morning. > > I’ve installed GeoServer 2.13 as a Windows service. I was wondering if it is > possible t

Re: [Geoserver-users] Unable to create new grid set

2024-05-10 Thread Russ Hore
It looks like you have entered EPSG:EPSG:4326 rather than EPSG:4326 ?? Russ > On 10 May 2024, at 13:20, Kristian Nils Robin Morin via Geoserver-users > wrote: > > I am using working to configure the image docker.osgeo.org/geoserver:2.25.0 > <http://docker.osgeo.or

[Geoserver-users] Download page not found

2023-02-21 Thread Russ Hore
I just tried to download from ; https://geoserver.org/release/stable and got ___ Geoserver-users mailing list Please make sure you read the following two resources before posting to this list: - Earning your support instead of buying it, but Ian

Re: [Geoserver-users] Reduce number of nodes from line in gml format

2022-10-26 Thread Russ Hore
If they are individual lines that you want to simplify I would think you could use a view with a query using PostGIS's ST_Simplify function; https://postgis.net/docs/manual-dev/ST_Simplify.html <https://postgis.net/docs/manual-dev/ST_Simplify.html> Russ > On 26 Oct 2022, at 09:53, XA

Re: [Geoserver-users] proper use of sld to display wms layer

2022-09-09 Thread Russ Hore
I am no expert in OpenLayers but could the OpenLayers option; OpenLayers.DOTS_PER_INCH = 25.4 / 0.28; help? Can it force the DPI to be the same no matter what the Device DPI is. > On 9 Sep 2022, at 14:39, Julien Robitaille wrote: > > By resolution, do you mean the dpi resolution? Or maybe

Re: [Geoserver-users] ImageIO Cache Memory Threshold error/warning

2022-05-10 Thread Russ Hore
Hi Jody, I set it to 80% and the error no longer occurs. BUT I have upgraded to 2.20.4 since then. I will let you know if I see it again. Many thanks Russ > On 10 May 2022, at 05:14, Jody Garnett wrote: > > That looks like it is set, do you want to try changing the value to

Re: [Geoserver-users] Geoserver is not starting while running startup batch script

2022-01-10 Thread Russ
I might be wrong but I think Java 11 needs a liter. version of GeoServer. Why do you need the old version? > On 10 Jan 2022, at 19:10, Jibran Khan wrote: > >  > Hello, > > I am trying to run an older version of Geoserver (Ver 2.15.1) on my Windows > 10 (64 bit) PC. The script startup.bat

Re: [Geoserver-users] Geoserver not running

2021-12-16 Thread Russ Hore
I am coming to this late but have you checked the tomcat.service file in /usr/lib/systemd/system Is there a line something like; ReadWritePaths=/data/ for wherever your data directory is? Russ > On 16 Dec 2021, at 11:30, Mauricio Vieira Cardoso Filho > wrote: > > Hi, A goo

Re: [Geoserver-users] HTTP ERROR 503 on startup after moving Geoserver data directory

2021-10-21 Thread Russ Hore
> Also the mountpoint of the datafolder did not change - my question may > have been formulated a bit unprecise. I moved the data do a different Ah I see. That makes more sense. But that means I am out of ideas. Russ > On 21 Oct 2021, at 10:24, Steffen Reichel wrote: > > >

Re: [Geoserver-users] HTTP ERROR 503 on startup after moving Geoserver data directory

2021-10-20 Thread Russ Hore
Ah, I am not sure about Jetty but for Tomcat, it does not matter if the data folder is 777/rwxrwxrwx, if it is not listed in the tomcat.service file, it can't be written to, as far as I am aware under Tomcat9. Russ > On 20 Oct 2021, at 12:53, Steffen Reichel wrote: > > Hi, >

Re: [Geoserver-users] HTTP ERROR 503 on startup after moving Geoserver data directory

2021-10-20 Thread Russ Hore
Are you running under Linux/Tomcat? In the latest(?) Tomcat you need to explicitly give permission for Tomcat to rad the data folder. It is on a file called /lib/systemd/system/tomcat.service You need to add a line; ReadWritePaths= e.g. ReadWritePaths=/data/ Russ > On 20 Oct 2021, at 10

Re: [Geoserver-users] Add multilple styles SLD to one wms layer

2021-10-14 Thread Russ Hore
I think this is more of a Leaflet question. > On 13 Oct 2021, at 23:16, kaoutar hraka wrote: > > I have one layer in geoserver witch i applied 3 sld, in preview layer of > geoserver i can change styles of layer from default one to thers styles. now > i added wms layer to leaflet map i want

Re: [Geoserver-users] ImageIO Cache Memory Threshold error/warning

2021-10-12 Thread Russ Hore
gt; prohibited. If you have received this email by mistake, please notify us > immediately by telephone or e-mail. > > > On Tue, Oct 12, 2021 at 3:31 PM Russ Hore <mailto:r...@russ-hore.co.uk>> wrote: > Thanks. > > I don't see the error on that page but if I go to the Tile Cac

Re: [Geoserver-users] ImageIO Cache Memory Threshold error/warning

2021-10-12 Thread Russ Hore
Thanks. I don't see the error on that page but if I go to the Tile Caching, I see the error on the Caching Defaults, Tile Layers and Disk Quota pages. Russ > On 12 Oct 2021, at 13:51, Simone Giannecchini > wrote: > > Hi Russ, > the screenshot above is from the wrong page,

[Geoserver-users] ImageIO Cache Memory Threshold error/warning

2021-10-12 Thread Russ Hore
I am running the GS 2.20-RC on Ubuntu 20.04 under Tomcat9 Server has 64Gb RAM/24 cores (It is an old Mac Pro) Java is openjdk version "11.0.11" 2021-04-20 OpenJDK Runtime Environment (build 11.0.11+9-Ubuntu-0ubuntu2.20.04) OpenJDK 64-Bit Server VM (build 11.0.11+9-Ubuntu-0ubuntu2.20.04, mixed

[Geoserver-users] eMail footer

2021-06-29 Thread Russ Hore
Might be pedantic but I noticed in the email footer a typo? - Earning your support instead of buying it, *but* Ian Turton: http://www.ianturton.com/talks/foss4g.html#/ Russ___ Geoserver-users mailing

Re: [Geoserver-users] QGIS conection whith oracle db

2021-03-31 Thread Russ Hore
This is a list about Geoserver not QGis. Better to ask on their list. Russ > On 31 Mar 2021, at 11:15, Shehriyar Recebli Bayram oglu > wrote: > > Hello everybody > > Someone can help me. When I connect oracle db whith QGIS my featureclass > geometry type and SRID

Re: [Geoserver-users] Styling of windbarbs

2021-03-11 Thread Russ Hore
e78/modules/library/render/src/main/java/org/geotools/renderer/style/windbarbs/WindBarb.java#L229> If that was 47 I think you will get a filled pennant That is assuming this diagram is officially correct; https://tephi.readthedocs.io/en/latest/barbs.html Russ > On 11 Mar 2021, at 09:04

Re: [Geoserver-users] aerial basemap from New York's DoITT

2021-03-09 Thread Russ Hore
plonk that in the URL field and save it. Opening the new connection shows lots of layers from 1924 to 2018 Russ > On 9 Mar 2021, at 14:00, Stephen Sacks wrote: > > Hi Alexandre, > Thank you for your response. My apologies for posting to the GeoServer > list, but my previous effor

Re: [Geoserver-users] WMS images are sometimes partly randomly blue, green, yellow, pink or red

2021-03-02 Thread Russ Hore
I have had this when using Bicubic Raster interpolation. It was solved, by this list, by setting the ExpandToRGB=true in the _mosaic.properties file Russ > On 1 Mar 2021, at 13:02, Kylli Ek mailto:kylli...@csc.fi>> > wrote: > > Hi, > > Any idea what to check if some

Re: [Geoserver-users] Problems while creating ImageMosaic from GeoTIFFs

2020-12-08 Thread Russ Hore
I have seen this problem where the folder containing the GeoTIFFs does not have wrote permission for the Tomcat user (I am assuming you are using Tomcat) Russ > On 8 Dec 2020, at 11:36, Julius Schmiedt wrote: > > Hello everybody, > I face some troubles trying to create a Imag

Re: [Geoserver-users] Problem with ImageMosaic Creation

2020-09-29 Thread Russ Hore
Can you check the user that is running GeoServer (tomcat?) has read permission to the folder containing the files. I have been caught out that way before where I have created a folder as a normal user but the tomcat user does not have read permissions. Russ > On 29 Sep 2020, at 14:30, Nico

[Geoserver-users] Turning off WCS without changing Max data read/generated causes error

2020-07-31 Thread Russ Hore
Just a very minor irritation but if I go to Services | WCS and uncheck "Enable ECS", when I hit Save I get an error as below; and have to change them to something other than -1, even tho' I am turning the service off. Would the better defaults than -1?

Re: [Geoserver-users] Quick installation script for GeoServer

2020-07-20 Thread Russ Hore
aults): > > > >override="false"/> >override="false"/> > > > I usually separate out the tilecache (no need to backup), but you can do what > you like :) > -- > Jody Garnett > > > On Mon, 20 Jul 2020 at 01:28, Russ

[Geoserver-users] Quick installation script for GeoServer

2020-07-20 Thread Russ Hore
it here. It might not be the tidies scripting and I run it as root (I know thats not ideal and feel free to change it, but it is a local test server) I always create a folder /data/ and usually run Apache as the front end to terminate SSL and provide authentication. Russ #!/bin/bash

Re: [Geoserver-users] GeoServer 2.17.1 - Oracle 11.0.7 JDK - Strong cryptography available

2020-06-23 Thread Russ Hore
As far as I know it is not an error but just information. So does not need solving. Russ Sent from my iPad > On 22 Jun 2020, at 21:01, Diego Mendes Rodrigues wrote: > >  > Friends, > > I have a server with GeoServer 2.17.1 installed from Debian 9. > > I use the O

Re: [Geoserver-users] GeoS 2.17.0 problem removing layers

2020-05-14 Thread Russ Hore
; Wicket.Ajax.ajax({"u":"./org.geoserver.web.data.workspace.WorkspacePage?17-2.IBehaviorListener.0-table-listContainer-selectAllContainer-selectAll=false","m":"POST","c":"idd9","i":"ajaxFeedback","e":"c

Re: [Geoserver-users] Getting Http 400 bad request in Geoserver-UI

2020-04-21 Thread Russ Hore
> On 21 Apr 2020, at 09:30, sulu wrote: > > Hi Russ > > Yes, Proxy base url is set. > > Do you use something similar to > ProxyPass /geoserver http://:8900/geoserver > to redirect Geoserver-Requests from Apache to Tomcat? > > Andy > > &g

Re: [Geoserver-users] Getting Http 400 bad request in Geoserver-UI

2020-04-21 Thread Russ Hore
allow,deny Allow from all ProxyPass balancer://gscluster Russ > On 21 Apr 2020, at 09:30, sulu wrote: > > Hi Russ > > Yes, Proxy base url is set. > > Do you use something similar to > ProxyPass /geoserver http://:8900/geoserver > to re

Re: [Geoserver-users] Getting Http 400 bad request in Geoserver-UI

2020-04-21 Thread Russ Hore
Have you set the BaseProxy in Geoserver? I have GS in Tomcat 9 behind Apache and some forms do not work unless you set the base proxy. Russ > On 21 Apr 2020, at 07:10, sulu wrote: > > Hmmm. > > I found something in localhost_access_log. > All Submit-calls have a pro

Re: [Geoserver-users] Corruption at large zoom level

2020-01-27 Thread Russ Hore
Hi all, Thanks Andria, that works. I am creating an image mosaic from a number of files. I created the mosaic, edited the .properties files and I can zoom all the way in with no corruption. It might be a bit slower but that is expected I guess. Many thanks again. Russ > On 20 Jan 2

Re: [Geoserver-users] Vector Tile very slow rendering

2019-12-20 Thread Russ Hore
Hi Umberto, With respect to the last bit; > After less than 5 minutes, apparently the process ended successfully, but > under disk usage I still se N/A. I think you only see the amount used if you have Disk Quota turned on. Russ > On 17 Dec 2019, at 11:43, umbertofilippo wrote: &

Re: [Geoserver-users] ImagePyramid publish error

2019-06-03 Thread Russ Hore
It is worth replying to the list so everybody knows what you have tried. Are you on Linux/Windows? Russ > On 3 Jun 2019, at 08:23, vizes dzso wrote: > > Thanks Russ. > > I check the path and path is OK. Something else not working. > > Joe > > > On Monday, J

Re: [Geoserver-users] ImagePyramid publish error

2019-06-03 Thread Russ Hore
Have you checked the path to the files? > Failed to load granule file:/home/mapbender/pyramid/0/sfgh_001_001.tif Russ > On 3 Jun 2019, at 07:21, vizes dzso via Geoserver-users > wrote: > > Hello, > > I have a big 27Gbytes Geotif. I load it and publish, cached layer ect.

Re: [Geoserver-users] /data directory not writeable

2019-05-20 Thread Russ Hore
9/Catalina/ ReadWritePaths=/var/lib/tomcat9/webapps/ i just added new line with my path to it and it worked maybe it will help ya too sorry for my eng it isn't my native language and good luck (: ——— I added the path to mt /data/ directory and all is working fine now. GS2.15.1 on OpenJDK 11 Russ &

Re: [Geoserver-users] /data directory not writeable

2019-04-26 Thread Russ Hore
now but if anybody has things they want me to look at I have some spare time. I may try tomcat8/Java 8 on Ubuntu 19.04 later. Russ > On 26 Apr 2019, at 08:42, Russ Hore wrote: > > Hi Benoit, > > Good suggestion, (and I might be missing something obvious), but I am using >

Re: [Geoserver-users] /data directory not writeable

2019-04-26 Thread Russ Hore
lean install of Ubuntu 18 so will ley the list know. Russ > On 26 Apr 2019, at 08:18, DEGRÈVE Benoît wrote: > > Hi all, > > Russ, I would like to help but I may be wrong : have you already tried an > absolute path instead ? > > I say that because I’ve recently

Re: [Geoserver-users] /data directory not writeable

2019-04-26 Thread Russ Hore
Hi Panagiotis, Good idea but it is tomcat; # cat /etc/shadow|grep tom tomcat:!!:18011:: # Russ > On 26 Apr 2019, at 08:13, Panagiotis Kountouris > wrote: > > Hi Russ, > > could you please list your users with a "sudo less /etc/shadow" ? I think yo

Re: [Geoserver-users] /data directory not writeable

2019-04-26 Thread Russ Hore
I will try a clean install to Ubuntu 18.04 with the same Java etc and see what happens. Russ > On 25 Apr 2019, at 17:51, Russ Hore wrote: > > # ls -ld /data > drwxrwxrwx 2 tomcat tomcat 4096 Apr 25 15:10 /data > > > For info., > > # ps -efl |grep tomcat > 4

Re: [Geoserver-users] /data directory not writeable

2019-04-25 Thread Russ Hore
-Dignore.endorsed.dirs= -classpath /usr/share/tomcat9/bin/bootstrap.jar:/usr/share/tomcat9/bin/tomcat-juli.jar -Dcatalina.base=/var/lib/tomcat9 -Dcatalina.home=/usr/share/tomcat9 -Djava.io.tmpdir=/tmp org.apache.catalina.startup.Bootstrap start Russ > On 25 Apr 2019, at 17:22, Ian Turton wrote: > >

[Geoserver-users] /data directory not writeable

2019-04-25 Thread Russ Hore
I have just done a clean installation of Ubuntu 19.04, installed Tomcat 9, installed OpenJDK 11 and installed GS 2.15 I have a folder called /data to which I point GeoServer by editing web.xml GEOSERVER_DATA_DIR /data/ Now when I start GeoServer I get an error in

Re: [Geoserver-users] Release of GeoServer 2.15-RC now available

2019-01-31 Thread Russ Hore
9.0.14 RUSS > On 31 Jan 2019, at 08:45, Andrea Aime wrote: > > On Thu, Jan 31, 2019 at 9:39 AM Russ Hore <mailto:r...@russ-hore.co.uk>> wrote: > Not as far as I know. This is a vanilla install of Ububtu, I have not > installed any other fonts. > > What version

Re: [Geoserver-users] Release of GeoServer 2.15-RC now available

2019-01-31 Thread Russ Hore
special font on your machine? Not as far as I know. This is a vanilla install of Ububtu, I have not installed any other fonts. Russ > On 31 Jan 2019, at 07:26, Andrea Aime wrote: > > On Wed, Jan 30, 2019 at 8:11 PM Russ Hore <mailto:r...@russ-hore.co.uk>> wrote: > /usr/lib/jvm

Re: [Geoserver-users] Release of GeoServer 2.15-RC now available

2019-01-30 Thread Russ Hore
tomcat so it may be something misconfigured there? For reference the Linux version from unman -a is @geoserver15:/opt/tomcat/logs# uname -a Linux geoserver15 4.15.0-44-generic #47-Ubuntu SMP Mon Jan 14 11:26:59 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux @geoserver15:/opt/tomcat/logs# Russ &

Re: [Geoserver-users] Release of GeoServer 2.15-RC now available

2019-01-29 Thread Russ Hore
I just installed 2.15 onto Ubuntu 18.04.1 using Java 11. This is a Virtual machine running under VMWare ESXi 6.7. All seems to work fine as far as I have tested except for if I go to “Server Status” from the Admin screen. Details Build Information GeoServer Version 2.15-RC Git Revision

Re: [Geoserver-users] Failed to Add Raster Data Source

2018-01-18 Thread Russ
I sometimes get this and it is normally permissions on the files/directory. > On 18 Jan 2018, at 17:21, Daniele Romagnoli > wrote: > > Hello Kris, > I see this message on your log: > GeoTiffMetadata2CRSAdapter::createCoordinateSystem:Only Geographic & >

[Geoserver-users] libjpeg-turbo plugin may have a virus

2017-11-02 Thread Russ Hore
I was just looking through the plugins and noticed a red triangle next to eh jpegturbo plugin. Hovering over it I get the message”This file may be infected with malware” Browser is Firefox -- Check out the vibrant tech

Re: [Geoserver-users] How to have a parameter draw a circle in the map/layer?

2016-07-01 Thread Russ Amazon UK
I think this is more of an OpenLayers question which is why nobody has currently replied. Russ > On 30 Jun 2016, at 20:36, bengalliboy <bengalli...@yahoo.com> wrote: > > I have not got any response to this. Can someone please direct me to what I > am trying to do?

Re: [Geoserver-users] web admin behaviour for styles and layers edits

2016-03-19 Thread russ
I might be misunderstanding the question but I normally hit Validate (I think that is the name, not at my GeoServer at the moment) to check the syntax. This stays on the page. Russ > ---Original Message--- > From: Richard Duivenvoorde <rdmaili...@duif.net> > To: Ge

Re: [Geoserver-users] New User Can't Get it Working

2016-02-03 Thread Russ
Try browsing to port 8080 Russ Sent from my iPhone > On 3 Feb 2016, at 16:31, Goodspeed, Glenn <glenn.goodsp...@uta.edu> wrote: > > I’m trying to get GeoServer 2.8.0 working for the first time. I followed the > installation instructions, but when I browse to the web se

[Geoserver-users] Odd error when zoomed out on Image Mosaic

2016-01-28 Thread Russ Hore
I had a working GeoServer 2.8.1 under Tomcat on Linux that had an error crashing when I tried to view layer groups in the admin interface. I installed a second copy of GeoServer 2.8.1 under Tomcat at a different URL and copied across the raster data and created the layers I needed. In the

Re: [Geoserver-users] Layer very slow to display

2015-10-23 Thread russ
Is it a lack of an index on the table? Russ > ---Original Message--- > From: Georges H <georges.hi...@gmail.com> > To: geoserver-users <geoserver-users@lists.sourceforge.net> > Subject: [Geoserver-users] Layer very slow to display > Sent: 23 Oct '15 11

Re: [Geoserver-users] Upload .csv file to GeoServer via cURL

2015-02-11 Thread Russ Hore
Could you not insert them into Postgres and serve them from that via GeoSever? I do something similar. Russ --- On 11 Feb 2015, at 23:38, Don don...@gmx.net wrote: Dear GeoServer Users, My apologies in advance in case this is an annoying question! I am very new

Re: [Geoserver-users] Geoserver with very poor performance

2014-12-31 Thread Russ Hore
I have the same issue. Java 7. But the performance of serving up layers seems much like 2.5.2 so not a big problem for me. Would be interesting to see if I need to do something to fix it all the same Russ --- On 31 Dec 2014, at 09:29, markus.sigg...@web.de wrote

Re: [Geoserver-users] openlayers WMSGetFeatureInfo and geoserver too sensitive

2014-10-09 Thread Russ Hore
There is a parameter on the call to set the number of pixels to search. Russ --- On 9 Oct 2014, at 14:06, Ismail, Mark mark.ism...@knowsley.gov.uk wrote: I am using openlayers 2 and issuing a WMSGetFeatureInfo request to geoserver It works fine but It is far

Re: [Geoserver-users] Line shapefile publishes as polygon

2014-04-08 Thread Russ Hore
Can you load the shp file into QGIS for example? Russ --- On 8 Apr 2014, at 19:38, Bistrais, Bob bob.bistr...@maine.gov wrote: I cannot preview it in Layer Preview- neither with OpenLayers nor any other client. I know for a fact that the input shapefile is line

Re: [Geoserver-users] Using LayerSwitcher() With a Layer Group of WMSs

2013-10-10 Thread Russ Hore
Sounds like a question for the OpenLayers list. Russ --- On 10 Oct 2013, at 10:08, Ammar ammar8...@yahoo.com wrote: Hello. I am newbie to GeoServer and OpenLayers. I am trying to setup a WMS that consists of 6 layers of thematic maps on GeoServer. I tried

Re: [Geoserver-users] Tomcat7 and GEOSERVER_DATA_DIR ?

2013-06-11 Thread Russ Hore
What Jukka described DOES work and I have used it myself. I suspect you are missing something. Restart Tomcat? Reboot should not be required. Russ --- On 11 Jun 2013, at 11:42, Hakala Oiva (MTT) oiva.hak...@mtt.fi wrote: I have tried all the options mentioned here

Re: [Geoserver-users] Geoserver load balancing

2013-05-28 Thread Russ Hore
Have you looked at; http://opengeo.org/publications/geoserver-production/ or http://opengeo.org/publications/geoserver-production/opengeo-geoserver.pdf Russ --- On 28 May 2013, at 13:47, Ashraf Tammam aft1...@yahoo.com wrote: Hello all Is there any way to achieve

Re: [Geoserver-users] Geoserver Installation Mac

2012-07-03 Thread Russ
Should be able to do nohup start.sh Not at my Mac so can't try it Russ --- On 3 Jul 2012, at 12:29, hard_soluti...@lavabit.com wrote: Dear all, i have an question to geoserver_2.1.3 on a Mac Snowleopard Server. How must I start the Geoserver, that it isn't used