Skip to content

Commit

Permalink
Addressing docs glitch #7666 in installing-from-war-file, version-4.0…
Browse files Browse the repository at this point in the history
….2 and tutorials/deployment/index
  • Loading branch information
archaeogeek authored and github-actions[bot] committed Feb 13, 2024
1 parent 905b4ce commit dbc63de
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/manual/docs/install-guide/installing-from-war-file.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ For [Jetty](https://www.eclipse.org/jetty/) we the following versions: 9.4.x. Ne

Open <http://localhost:9200> in your web browser to check that Elasticsearch is running.

To use an existing instance check `on` in [Installing search platform](installing-index.md).
To use an existing instance check Configure connection in [Installing search platform](installing-index.md).

5. Up and running?

Expand Down
16 changes: 8 additions & 8 deletions docs/manual/docs/overview/change-log/version-4.0.2.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ GeoNetwork 4.0.2 release is a minor release but adds a better multilingual suppo

## Database migration

With the possibility to [restore deleted record](https://github.com/geonetwork/core-geonetwork/pull/4817), catalog maintainer has to update the database with the [following migration SQL script](https://github.com/geonetwork/core-geonetwork/blob/master/web/src/main/webapp/WEB-INF/classes/setup/sql/migrate/v3110/migrate-default.sql#L10-L27).
With the possibility to [restore deleted records](https://github.com/geonetwork/core-geonetwork/pull/4817), the catalog maintainer has to update the database with the [following migration SQL script](https://github.com/geonetwork/core-geonetwork/blob/master/web/src/main/webapp/WEB-INF/classes/setup/sql/migrate/v3110/migrate-default.sql#L10-L27).

## Index migration

Index migration is only required if you created custom facets configuration in the admin or created custom Kibana dashboards. Changes are related to name or structure changes in index fields due to the improvement made for multilingual record support. The changes affect the following type of fields:

### Codelist

`t_` is now `l_` and is an object composed of:
``codelist`` is now ``cl_`` and is an object composed of:

So `et` was:
characterSet was:

``` js
codelist_characterSet: [
Expand All @@ -39,13 +39,13 @@ cl_characterSet: [{
}]
```

So if using `xt` in a facet, use ``cl_characterSet.default`` with this new version.
So if using ``codelist_characterSet_text`` in a facet, use ``cl_characterSet.default`` with this new version.

### Thesaurus

The `ds` field is now only used for rendering (not for query) to limit the total number of field and avoid some errors on large catalogues.
The ``allKeywords`` field is now only used for rendering (not for query) to limit the total number of field and avoid some errors on large catalogues.

Use the per thesaurus fields which were named ``thesaurus_geonetwork+external/local+type+thesaurusid`` and are now `id`. The field is also an object composed of:
Use the per thesaurus fields, which were named ``thesaurus_geonetwork+external/local+type+thesaurusid`` and are now ``th_thesaurusid``. The field is also an object composed of:

``` js
thesaurus_geonetworkthesaurusexternalthemeeeatopics: [
Expand Down Expand Up @@ -73,11 +73,11 @@ th_eea-topics: [{

### Topic category

`ic` is renamed to `ic` and has the same structure as a codelist.
``topic`` is renamed to ``cl_topic`` and has the same structure as a codelist.

### GeoTag

`ag` is now stored in the ``template field for keyword types](https://github.com/geonetwork/core-geonetwork/pull/5243) ie. [keywordType-place``
``geotag`` is now stored in the [template field for keyword types](https://github.com/geonetwork/core-geonetwork/pull/5243) ie. ``keywordType-place``

For more details check [Configuring search fields](../../customizing-application/configuring-search-fields.md) and [Configuring faceted search](../../customizing-application/configuring-faceted-search.md).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

On this chapter, we will learn how to make GeoNetwork run on your machine or in the cloud.

Up to version 3 GeoNetwork could easily be deployed locally, there is even a [Windows installer](https://my.geocat.net/download/category/6/GeoNetwork.html). But with the arrival of version 4, GeoNetwork has a number of dependencies that need to be deployed separately, which makes the deployment locally more challenging. Instead the GeoNetwork community provides `es` for automated deployment using Docker. [Docker](https://docker.com) is a virtualisation technology which facilitates deployment of a `on` of prepackaged `es` locally or in the cloud.
Up to version 3 GeoNetwork could easily be deployed locally, there is even a [Windows installer](https://my.geocat.net/download/category/6/GeoNetwork.html). But with the arrival of version 4, GeoNetwork has a number of dependencies that need to be deployed separately, which makes the deployment locally more challenging. Instead the GeoNetwork community provides recipes for automated deployment using Docker. [Docker](https://docker.com) is a virtualisation technology which facilitates deployment of a composition of prepackaged images locally or in the cloud.

For this workshop we will focus on the use of docker, but we also provide some guidance on how to set up the environment without docker, or even build the application from sources.

Expand Down

0 comments on commit dbc63de

Please sign in to comment.