Re: [Geoserver-users] S3 Storage with Geoserver

2021-03-03 Thread Stephen V. Mather via Geoserver-users
To add some flavor regarding cloud optimized GeoTIFF Andreas, by structuring geotiffs with tiling and providing overviews within the tiff, and with the addition of a tooling environment around it, COGs provide the backbone for very simple but powerful HTTP GET range requests. I'm glad to see

Re: [Geoserver-users] S3 Storage with Geoserver

2021-03-03 Thread Simone Giannecchini
Dear Andreas, you need to try the COG plugin which has just been released. This for the moment is a community plugin so it is not part of standard releases which means you need to install it from nightly builds. Before it

Re: [Geoserver-users] GeoServer tileSize and SRS for best performance with Leaflet

2021-03-03 Thread Simone Giannecchini
Dear Vera, please, read below... Regards, Simone Giannecchini == GeoServer Professional Services from the experts! Visit http://bit.ly/gs-services for more information. == Ing. Simone Giannecchini @simogeo Founder/Director GeoSolutions S.A.S. Via di Montramito 3/A 55054 Massarosa (LU) Italy

Re: [Geoserver-users] S3 Storage with Geoserver

2021-03-03 Thread Krishnaglodha
Hi, This plugin allows user to use S3 to store the geotiffs and then use the S3 url as a store for raster layer in Geoserver Thank you, Krishna G. Lodha http://krishnaglodha.com On 3 Mar 2021, 9:05 PM +0530, Andreas Böhme , wrote: > Hello guys, > is it possible to connect geoserver to a S3

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Andrea Aime
Each of those source file has an author tag, they all say: @author christian About a reason to do so, database centric security can be a reason. A system where the access restrictions are enforced at the relational database level. In that case, you want to authenticate using database users, and

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Ian Turton
So who did write it? I'm still trying to come up with a reason to let my database users log into geoserver. Ian On Wed, 3 Mar 2021, 17:39 Andrea Aime, wrote: > Quoting from stack overflow: "After much head scratching and asking the > guys who wrote this stuff on the users mailing list" > >

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Andrea Aime
Quoting from stack overflow: "After much head scratching and asking the guys who wrote this stuff on the users mailing list" Hell no, I had nothing to do with those modules! :-D Cheers Andrea On Wed, Mar 3, 2021 at 6:35 PM Ian Turton wrote: > Thanks to everyone for their help on this I have

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Ian Turton
Thanks to everyone for their help on this I have finally got my head around it and have added an answer to the gis.stackoverflow question I linked to earlier (https://gis.stackexchange.com/a/388940/79) - If I get some time over the weekend I'll see if I can try to make the documentation clearer.

[Geoserver-users] S3 Storage with Geoserver

2021-03-03 Thread Andreas Böhme
Hello guys, is it possible to connect geoserver to a S3 storage? I found a plugin documentation but no plugin for download. Is this extension gone? Also, what exactly is the "S3 Support for GeoTiff"-Plugin for? Do I need this if I connect my geoserver to S3 storage? Kind regards Andreas

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Andrea Aime
Hi Ian, the role handling is a third class: [image: image.png] 1: authentication via database users (tries to connect to the database using the username/password provided in the request) 2: authentication via table contents (looks up a user with the same name provided in the request, and

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Ian Turton
On Wed, 3 Mar 2021 at 13:33, Andrea Aime wrote: > Hi Ian, > there are both functionalities, they are separate classes and are > configured in a different way: > > >- Authenticating using the database own users: > >

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread krishna lodha
Hi, So the bottom line is we can’t use database to store users? That can be then used further to login to geoserver ? On Wed, 3 Mar 2021 at 19:23, Mauro Bartolomeoli < mauro.bartolome...@geo-solutions.it> wrote: > Hi Ian, > the JDBC Authentication Provider is meant to be used to login using the

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Mauro Bartolomeoli
Hi Ian, the JDBC Authentication Provider is meant to be used to login using the database (e.g. postgresql) users. If you want to store your own users on a database, the JDBC UserGroup Service has to be used (together with the standard UsernamePassword Authentication Provider). I know it's

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Andrea Aime
Hi Ian, there are both functionalities, they are separate classes and are configured in a different way: - Authenticating using the database own users: https://docs.geoserver.geo-solutions.it/edu/en/security/jdbc_authentication.html - Storing credentials in the database, use the table

Re: [Geoserver-users] JDBC authentication

2021-03-03 Thread Krishnaglodha
Hi Ian, Thanks for getting back, the stack exchange denotes the exact problem I’m facing. The new “users” are created but they can not be used to login, only the ‘users’ which are user of PostgreSQL can be used to login Thank you, Krishna G. Lodha On 3 Mar 2021, 5:04 PM +0530, Ian Turton ,

[Geoserver-users] JDBC authentication

2021-03-03 Thread Ian Turton
Just to check before I break out the debugger: When you use JDBC Authentication can it allow any user you create in GeoServer (which get written in then tables) login in or does it only allow the user used for the postgis connection (or other postgis users) to log in? It seems like this is a