Skip to content

Commit

Permalink
[DOCS-7460] Remove incorrect properties from solcore.properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Prosune committed May 6, 2024
1 parent 7fce265 commit 2e4d027
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 25 deletions.
15 changes: 3 additions & 12 deletions insight-engine/latest/install/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,24 +218,15 @@ This task assumes you have:

3. Configure HTTP.

1. Open `solrhome/templates/rerank/conf/solrcore.properties`.

2. Replace `alfresco.secureComms=https` with:

```bash
alfresco.secureComms=secret
alfresco.secureComms.secret=password
```

This ensures that the Solr cores are created in plain HTTP mode with the shared secret communication method. The property `alfresco.secureComms.secret` includes the same word used in the `solr.sharedSecret` property in the Repository configuration.

Alternatively, you can add this configuration in the system properties (using `-D`) when starting Solr. This alternative is safer because the shared secret is not stored in the filesystem. For example, add the following to the startup parameters in step **7**.
1. Pass alfresco.secureComms.secret as a system property (using -D when starting Solr) by adding the startup parameters in step **7**:

```bash
-Dalfresco.secureComms=secret
-Dalfresco.secureComms.secret=password
```

This ensures that the Solr cores are created in plain HTTP mode with the shared secret communication method. The property `alfresco.secureComms.secret` includes the same word used in the `solr.sharedSecret` property in the Repository configuration.

4. If you use several languages across your organization, you **must** enable cross-language search support in all fields. To do this add the following to the `alfresco-search-services/solrhome/conf/shared.properties` file:

```bash
Expand Down
17 changes: 4 additions & 13 deletions search-services/latest/install/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,24 +216,15 @@ This task assumes you have:

3. Configure HTTP.

1. Open `solrhome/templates/rerank/conf/solrcore.properties`.
1. Pass `alfresco.secureComms.secret` as a system property (using `-D` when starting Solr) by adding the startup parameters in step **7**:

2. Replace `alfresco.secureComms=https` with:

```bash
alfresco.secureComms=secret
alfresco.secureComms.secret=password
```

This ensures that the Solr cores are created in plain HTTP mode with the shared secret communication method. The property `alfresco.secureComms.secret` includes the same word used in the `solr.sharedSecret` property in the Repository configuration.

Alternatively, you can add this configuration in the system properties (using `-D`) when starting Solr. This alternative is safer because the shared secret is not stored in the filesystem. For example, add the following to the startup parameters in step **7**.

```bash
```bash
-Dalfresco.secureComms=secret
-Dalfresco.secureComms.secret=password
```

This ensures that the Solr cores are created in plain HTTP mode with the shared secret communication method. The property `alfresco.secureComms.secret` includes the same word used in the `solr.sharedSecret` property in the Repository configuration.

4. If you use several languages across your organization, you **must** enable cross-language search support in all fields. To do this add the following to the `alfresco-search-services/solrhome/conf/shared.properties` file:

```bash
Expand Down

0 comments on commit 2e4d027

Please sign in to comment.