Thanks Daniele,
This is what I was expecting…unfortunately, I don’t have subversion installed on this machine. Which looks to be required based on the document. I’ll see about getting that installed to test this documentation. What a pain!
I’m surprised I’m not able to find more people having this problem. Curious, if I’m just unlucky here or if not many use this GDAL extension…ugh!
Jason
From: dany.geotools@anonymised.com [mailto:dany.geotools@anonymised.com] On Behalf Of Daniele Romagnoli
Sent: Thursday, March 10, 2016 10:06 AM
To: Cradit, Jason <jcradit@anonymised.com>
Cc: Ian Turton <ijturton@anonymised.com>; geoserver-users@lists.sourceforge.net
Subject: Re: SPAM Re: [Geoserver-users] GDAL Install
Hi Jason,
for my experience, the best way to have the GDAL installation working on a system which doesn’t reflect the ones available on ImageIO-EXT downloads 1 is building the native libs directly on the system, in order to avoid dependencies and third party libraries conflicts.
Let me paste a piece of an email I have sent in the past covering the same topic:
Linux distributions are usually “bad beasts” in terms of native libs migration across different systems since a GDAL native build made on a system won’t probably work on a different one (Due to different sets of libstdc++, GLIBCXX, gcc and so on available on a system with respect to another one). Therefore, we have only prepared a set of builds for a reduced set of systems.
That said, I think that the best solution for you is to build GDAL on your system so that it will use the set of libstdc++, GLIBCXX, … available on your machine.
You may find some reference instructions (They were based on a previous version of GDAL but the steps are basically still valid) here:
https://github.com/geosolutions-it/imageio-ext/blob/master/documentation/ImageioExt-SetupGuide-1.1.odt
You can focus on chapters 3.6 (SWIG), 3.7.2 (just the main section… no subchapters which refer to third party libs) and 3.7.3.
Hope this helps.
Cheers,
Daniele
On Thu, Mar 10, 2016 at 4:25 PM, Cradit, Jason <jcradit@anonymised.com> wrote:
HAHA, thanks Ian. I think we need to stick with RHEL…due to some other dependency.
Anyone else have any ideas or some documentation for install that worked on RHEL 6.5?
From: Ian Turton [mailto:ijturton@anonymised.com]
Sent: Thursday, March 10, 2016 8:15 AM
To: Cradit, Jason <jcradit@anonymised.com>
Cc: geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] GDAL Install
To be honest this is starting to remind me why I gave up using Centos
I think that you will need to use the exact file that is pointed to in the tutorial gdal192-Ubuntu11-gcc4.5.2-x86_64.tar.gz and ignore all other gdal installs that you might see on your machine
Ian
On 10 March 2016 at 14:06, Cradit, Jason <jcradit@anonymised.com> wrote:
Hey Ian,
I have and you are right, it’s not. Yet, it’s also nowhere on my system. So that’s the question, how do I get all the dependencies or is there something wrong with my install process? Or something I missed in documentation.
I’ve actually added the OpenGeo repo and installed Geos 3.5 and now I’m passed that particular file and now it wants ‘libgeos-3.3.3.so’ as the previous file was installed from the OpenGeo repo. Yet, yet, the OpenGeo repo installed version 3.5 of GEOS and it appears that gdalinfo wants version 3.3.3 , why?
So lost…
Thanks for the help!
Jason
From: Ian Turton [mailto:ijturton@anonymised.com]
Sent: Thursday, March 10, 2016 7:57 AM
To: Cradit, Jason <jcradit@anonymised.com>
Cc: geoserver-users@lists.sourceforge.net
Subject: Re: [Geoserver-users] GDAL Install
Have you looked in /opt/gdal-1.9.2_x64_rh6 to see if libgeos_c.so.1 is there? if it isn’t then your LD_LIBRARY_PATH is wrong and you need to hunt down the shared libraries and add that path to it.
Ian
On 10 March 2016 at 13:32, Cradit, Jason <jcradit@anonymised.com> wrote:
I need help! I’m trying to get GeoServer up and running on an EC2 instance and can do so using the WAR install. However, when I go to install GDAL so that I can read jp2 files, I fail miserably using this documentation: http://docs.geoserver.org/latest/en/user/data/raster/gdal.html.
Here is my process:
Deploy RHEL 6.5 ec2 instance
Install tomcat6
Cd to /opt
GeoServer:
sudo wget http://sourceforge.net/projects/geoserver/files/GeoServer/2.8.2/geoserver-2.8.2-war.zip
sudo unzip geoserver-2.8.2-war.zip -d geoserver-2.8.2-war
sudo cp geoserver-2.8.2-war/*.war /var/lib/tomcat6/webapps/
sudo service tomcat6 restart
GDAL:
sudo wget https://sourceforge.net/projects/geoserver/files/GeoServer/2.8.2/extensions/geoserver-2.8.2-gdal-plugin.zip
sudo unzip geoserver-2.8.2-gdal-plugin.zip -d geoserver-2.8.2-gdal-plugin
sudo cp geoserver-2.8.2-gdal-plugin/* /var/lib/tomcat6/webapps/geoserver/WEB-INF/lib
ImageIO JAR files:
sudo wget http://demo.geo-solutions.it/share/github/imageio-ext/releases/1.1.X/1.1.12/imageio-ext-1.1.12-jars.zip
sudo unzip imageio-ext-1.1.12-jars.zip -d imageio-ext-1.1.12-jars
sudo cp imageio-ext-1.1.12-jars /usr/lib/jvm/jre/lib/amd64
CRS Definitions:
sudo wget http://demo.geo-solutions.it/share/github/imageio-ext/releases/1.1.X/1.1.12/native/gdal/gdal-data.zip
sudo unzip gdal-data.zip -d ./
Native Libaries
sudo wget http://demo.geo-solutions.it/share/github/imageio-ext/releases/1.1.X/1.1.12/native/gdal/linux/gdal192-Redhat6.0-gcc4.4.4-x86_64.tar.gz
sudo tar -zxvf gdal192-Redhat6.0-gcc4.4.4-x86_64.tar.gz
export GDAL_DATA=/opt/gdal-data
export LD_LIBRARY_PATH=/opt/gdal-1.9.2_x64_rh6
export PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/ec2-user/bin:/opt/gdal-1.9.2_x64_rh6:/opt/imageio-ext-1.1.12-jars:/usr/lib/jvm/jre/lib/amd64
Pretty sure that is just as is documented…but if I’m wrong, please let me know. Once this is done and I run gdalinfo, I receive a message telling me
“/opt/gdal-1.9.2_x64_rh6/.libs/lt-gdalinfo: error while loading shared libraries: libgeos_c.so.1: cannot open shared object file: No such file or directory”
After some review I found the GEOS library contained that file. I don’t see that as a required dependency anywhere and/or where to install that from. Is it required? Is there any documentation that shows how and where to install it? Are there other dependencies or am I just doing something wrong. Also, when logging into geoserver the new raster formats just don’t show up.
Any direction would be GREATLY appreciated.
Thanks,
Jason
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785111&iu=/4140
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
–
Ian Turton
–
Ian Turton
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785111&iu=/4140
Geoserver-users mailing list
Geoserver-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/geoserver-users
–
==
GeoServer Professional Services from the experts! Visit
http://goo.gl/it488V for more information.
Ing. Daniele Romagnoli
Senior Software Engineer
GeoSolutions S.A.S.
Via di Montramito 3/A
55054 Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
http://www.geo-solutions.it
http://twitter.com/geosolutions_it
AVVERTENZE AI SENSI DEL D.Lgs. 196/2003
Le informazioni contenute in questo messaggio di posta elettronica e/o nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il loro utilizzo è consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora riceviate questo messaggio senza esserne il destinatario, Vi preghiamo cortesemente di darcene notizia via e-mail e di procedere alla distruzione del messaggio stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso, divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od utilizzarlo per finalità diverse, costituisce comportamento contrario ai principi dettati dal D.Lgs. 196/2003.
The information in this message and/or attachments, is intended solely for the attention and use of the named addressee(s) and may be confidential or proprietary in nature or covered by the provisions of privacy act (Legislative Decree June, 30 2003, no.196 - Italy’s New Data Protection Code).Any use not in accord with its purpose, any disclosure, reproduction, copying, distribution, or either dissemination, either whole or partial, is strictly forbidden except previous formal approval of the named addressee(s). If you are not the intended recipient, please contact immediately the sender by telephone, fax or e-mail and delete the information in this message that has been received in error. The sender does not give any warranty or accept liability as the content, accuracy or completeness of sent messages and accepts no responsibility for changes made after they were sent or for other risks which arise as a result of e-mail transmission, viruses, etc.
Ing. Daniele Romagnoli
Senior Software Engineer
GeoSolutions S.A.S.
Via di Montramito 3/A
55054 Massarosa (LU)
Italy
phone: +39 0584 962313
fax: +39 0584 1660272
Le informazioni contenute in questo messaggio di posta elettronica e/o nel/i file/s allegato/i sono da considerarsi strettamente riservate. Il loro utilizzo è consentito esclusivamente al destinatario del messaggio, per le finalità indicate nel messaggio stesso. Qualora riceviate questo messaggio senza esserne il destinatario, Vi preghiamo cortesemente di darcene notizia via e-mail e di procedere alla distruzione del messaggio stesso, cancellandolo dal Vostro sistema. Conservare il messaggio stesso, divulgarlo anche in parte, distribuirlo ad altri soggetti, copiarlo, od utilizzarlo per finalità diverse, costituisce comportamento contrario ai principi dettati dal D.Lgs. 196/2003.
The information in this message and/or attachments, is intended solely for the attention and use of the named addressee(s) and may be confidential or proprietary in nature or covered by the provisions of privacy act (Legislative Decree June, 30 2003, no.196 - Italy’s New Data Protection Code).Any use not in accord with its purpose, any disclosure, reproduction, copying, distribution, or either dissemination, either whole or partial, is strictly forbidden except previous formal approval of the named addressee(s). If you are not the intended recipient, please contact immediately the sender by telephone, fax or e-mail and delete the information in this message that has been received in error. The sender does not give any warranty or accept liability as the content, accuracy or completeness of sent messages and accepts no responsibility for changes made after they were sent or for other risks which arise as a result of e-mail transmission, viruses, etc.