[GeoNetwork-users] GeoNetwork opensource v2.6.1 released

Dear all,
I'm pleased to announce the maintenance release v2.6.1 of GeoNetwork opensource. This is a minor release fixing a range of issues and adding small improvements to the software.

You can download the software from

Here is a list of fixes and changes:
--------------------------------------------------------------------------------
--- Bug fixes
--------------------------------------------------------------------------------
- Exclude some substitutions which prevent the vertical extent element from being fully expanded
- Fix migration scripts from 2.4.3 to 2.6.0
- Fix search using INSPIRE annex
- Typo fix for German language
- Added support for sqlserver database. Thanks to Mikael Elmquist for provide sql files
- Add in xslt converters for DIF to ISO and Thredds
- Missing xslt to convert netcdf CDM coords to ISO keywords
- Fix harvesting a OAI set whose name contains a "-". Thanks Tim Proescholdt
- Fix #335: Max number of children displayed in relation panel. Added from and to parameters to allow paging in related records if needed
- Fix #339: Wildcard search broken
- Fix #337: Metadata indexing uses old INSPIRE setting
- Fix #343: CSW / iso19110 / exception when requesting ISO19139 output
- Fix #344: bad schema error when using XSL on import. Thanks murrayking
- Fix #345: Changed postgres driver version to be compatible with Java 1.5
- Fix #346: Javascript error when setting "singleTile: true" for a WMS layers in Map viewer
- Fix #347: Fix thesaurus directory removed by maven
- Fix #348: ArcSDE Harvester. Javascript error accessing config panel
- Fix #354: XSL error message in WMC to Iso19139 transformation
- Fix #357: Use geometry parameter in GUI search for bounding boxes, instead of lucene bbox fields. Fixed also Disjoint spatial filter
- Fix #364: CSW queryables, added support for INSPIRE ResponsiblePartyRole and fix for ResourceIdentifier
- Fix #365: Allow to configure LDAP uid attribute name
- Fix #366: Add contextual label translation allowing to use full xpath for elements in metadata editor
- Fix #367: Not possible to search on Subject queryable for a value that includes spaces
- Fix #371: Tooltips in System Configuration have disappeared

--------------------------------------------------------------------------------
--- Changes
--------------------------------------------------------------------------------
- Added support for OpenLayers Map config options in map viewer
- Service to retrieve the metadata owned by a user
- Use redirect for login and logout services to show in browser address bar the url of main page, after login/logout

GeoNetwork opensource ( http://geonetwork-opensource.org ) is a standards based geospatial catalog application that helps people and organizations to organize and publish their geospatial data through the web. It is currently used in numerous Spatial Data Infrastructure initiatives across the world.

The software provides an easy to use web interface to search geospatial data across multiple catalogs, combine distributed map services in the embedded map viewer, publish geospatial data using the online metadata editing tools and optionally the embedded GeoServer map server. Administrators have the option to manage user and group accounts, configure the server through web based and desktop utilities and schedule metadata harvesting from other catalogs.

You will find support for a number of metadata formats (ISO19115/19119 following ISO19139, FGDC and Dublin Core), a number of catalog interfaces (OGC-CSW2.0.2 ISO profile client and server, OAI-PMH client and server, GeoRSS server, GEO OpenSearch server, WebDAV harvesting, GeoNetwork to GeoNetwork harvesting support).

A single, platform independent installer allows to install and run the software on a PC or a server on Windows, Linux and Mac OS X. The installer can be downloaded as an executable Windows file or as a platform independent .jar installer. It creates a Start menu on Windows computers. Command line installations are also possible for remote installations. Please refer to the manual for detailed installation instructions.

The GeoNetwork community has been expanding quickly over the last years. The current release has been possible because of all those that contributed to the project through code contributions, testing, bug reports and fixes as well as many suggestions.

GeoNetwork opensource is part of the Open Source Geospatial Foundation (OSGeo, http://www.osgeo.org) software stack, providing software you can trust tobe free, open and sustainable. Voluntary support is provided through mailing lists, websites and online forums.
Several companies also provide commercial support to help organizations to implement, integrate and maintain the software. You can find them in the Service Provider directory on the OSGeo website.

We hope you will enjoy this new release!

Thanks to all developers and contributors!

Kind regards,
Jeroen Ticheler
Chair Project Steering Committee

Is there a way of installing it from commandline? I only have access to the
server through putty.
--
View this message in context: http://osgeo-org.1803224.n2.nabble.com/GeoNetwork-opensource-v2-6-1-released-tp5745790p5782772.html
Sent from the GeoNetwork users mailing list archive at Nabble.com.

hello,

maybe it is quit simple:
1. first generate a install.xml installation file with following content:

<AutomatedInstallation langpack="eng">
    <com.izforge.izpack.panels.HelloPanel/>
    <com.izforge.izpack.panels.HTMLLicencePanel/>
    <com.izforge.izpack.panels.TargetPanel>
        <installpath>/pathToInstalldIR</installpath>
    </com.izforge.izpack.panels.TargetPanel>
    <com.izforge.izpack.panels.PacksPanel>
        <selected>
            <pack index="0"/>
        </selected>
    </com.izforge.izpack.panels.PacksPanel>
    <com.izforge.izpack.panels.InstallPanel/>
    <com.izforge.izpack.panels.ShortcutPanel />
    <com.izforge.izpack.panels.HTMLInfoPanel/>
    <com.izforge.izpack.panels.FinishPanel/>
</AutomatedInstallation>

2. download the jar file
3. java -jar geonetwork-install-2.6.1-0.jar install.xml
4. generate database
createdb -U postgres -p 5433 -E UTF8 geonetwork261
5. adopt database conf file
vi /data/geonetwork/geonetwork260/web/geonetwork/WEB-INF/config.xml
maybe (for postgres) to:
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
                <!-- postgresql -->
                <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -->
                
                <resource enabled="true">
                        <name>main-db</name>
                        <provider>jeeves.resources.dbms.DbmsPool</provider>
                        <config>
                                <user>postgres</user>
                                <password>*****</password>
                                <driver>org.postgresql.Driver</driver>
                                <!--
                                        jdbc:postgresql:database
                                        jdbc:postgresql://host/database
                                        jdbc:postgresql://host:port/database
                                -->
                <url>jdbc:postgresql://localhost:5433/geonetwork261</url>
                                <poolSize>10</poolSize>
                        </config>
                </resource>

deactivate standard mckoi database in this file with <resource enabled="false">
6. fill database with initial data:
psql -U postgres -p 5433 geonetwork260 -f
/data/geonetwork/geonetwork260/web/geonetwork/WEB-
INF/classes/setup/sql/create/create-db-postgres.sql
psql -U postgres -p 5433 geonetwork260 -f
/data/geonetwork/geonetwork260/web/geonetwork/WEB-
INF/classes/setup/sql/data/data-db-postgres.sql

7. adopt tomcat or start with included jetty
for tomcat55 you have to do some adoption of the permissions
chown -R tomcat55:nogroup /data/geonetwork/geonetwork260/data/
chown -R tomcat55:nogroup /data/geonetwork/geonetwork260/web/
8. you have to give enough memory to the container to do the indices :wink: -
maybe 1024M

hope this helps

regards
armin

Am Sonntag 28 November 2010, um 23:56:59 schrieb neatgadgets:

Is there a way of installing it from commandline? I only have access to the
server through putty.

--
Im Auftrag
--
Armin Retterath

Kompetenz- und Geschäftsstelle Geodateninfrastruktur Rheinland-Pfalz
beim
Landesamt für Vermessung und Geobasisinformation Rheinland-Pfalz

Ferdinand-Sauerbruch-Straße 15
56073 Koblenz
Telefon 0261/492-466
Telefax 0261/492-492
armin.retterath@anonymised.com
http://www.geoportal.rlp.de

Hi,

I should have said that I am working on CENTOS and using MySQL. Not sure how
that affects the above. I'll see if I can work through what you have
provided. Thankyou very much for your reply!
--
View this message in context: http://osgeo-org.1803224.n2.nabble.com/GeoNetwork-opensource-v2-6-1-released-tp5745790p5786346.html
Sent from the GeoNetwork users mailing list archive at Nabble.com.