https://github.com/lutoma/dn42search
A search engine for the DN42 overlay network
https://github.com/lutoma/dn42search
Last synced: 29 days ago
JSON representation
A search engine for the DN42 overlay network
- Host: GitHub
- URL: https://github.com/lutoma/dn42search
- Owner: lutoma
- License: agpl-3.0
- Created: 2022-02-12T07:02:11.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-07T18:35:09.000Z (about 3 years ago)
- Last Synced: 2025-02-06T04:12:53.634Z (3 months ago)
- Language: Vue
- Homepage: https://dn42.eu
- Size: 309 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# DN42 search
The setup process is very involved at the moment. Maybe if there is interested I'll set up Docker files and a docker-compose.yml for services at some point.
## Solr setup
Create Docker container and Core:
```
sudo docker run -d -p 8983:8983 -v "/var/solr:/var/solr" --name dn42search_solr --restart=always solr:8.11
sudo docker exec -it dn42search_solr solr create_core -c dn42search
```Install config and schema:
```
docker stop dn42search_solr
sudo cp solrconfig.xml /var/solr/data/dn42search/conf/solrconfig.xml
sudo cp schema.xml /var/solr/data/dn42search/conf/managed-schema
sudo chown -R 8983:8983 /var/solr/data/dn42search/conf
docker start dn42search_solr
```(This is all quite hacky and should be done using the API instead in Solr 8, but whatever.)