-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating Manual Install Instructions Based on Feedback from slangerx #2328
Conversation
Should be ready to go now. |
### Creating a New Solr Core | ||
|
||
Initially, our new Solr core will contain a configuration copied from the example included with the installation, so that we have something to work with when we configure this on the Drupal side. We’ll later update this with generated configurations we create in Drupal. | ||
|
||
```bash | ||
cd /opt/solr | ||
sudo mkdir -p /var/solr/data/SOLR_CORE/conf | ||
sudo cp -r example/files/conf/* /var/solr/data/SOLR_CORE/conf | ||
sudo chown -R solr:solr /var/solr | ||
sudo -u solr bin/solr create -c SOLR_CORE -p 8983 | ||
``` | ||
- `SOLR_CORE`: `islandora8` | ||
|
||
You should see an output similar to this: | ||
``` | ||
WARNING: Using _default configset with data driven schema functionality. NOT RECOMMENDED for production use. | ||
To turn off: bin/solr config -c islandora8 -p 8983 -action set-user-property -property update.autoCreateFields -value false | ||
|
||
Created new core 'islandora8' | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this removed? The rest of the page refers to "the core we created earlier" but there is no core now
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update: it looks like this was just moved down to line 134. IMO this needs to be updated to be in the right order. I can make this change without objection
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@forresthopkinsa , this PR has been merged already, but if you would like to propose any edits, you can do it on https://github.com/Islandora/documentation/blob/main/docs/installation/manual/installing-solr.md
Edit the commons config to update it with Fedora's location (if necessary) and enable the apix middleware in `/opt/crayfish/Milliner/config/packages/crayfish_commons.yaml`: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
?
Purpose / why
@slangerx contributed edits to the manual install instructions and posted it as an issue @ #2326. This PR pulls in most of those suggestions and provides a few small additions.
What changes were made?
Lots of updates to the various manual install steps.
Verification
Please check formatting, spelling, grammar, etc.
Interested Parties
Checklist
Pull-request Reviewer
Pull-request reviewer should ensure the following:
Person Merging
The person merging should ensure the following: