summaryrefslogtreecommitdiff
path: root/textproc/apache-solr/files/patch-bin_solr (follow)
Commit message (Collapse)AuthorAgeFilesLines
* textproc/apache-solr: use sockstat instead of lsofMatthias Fechner2024-12-131-0/+33
| | | | | | | | | | | | | While starting solr it is using now sockstat and can detect now if the start was successful. The patch is also provided upstream here: https://github.com/apache/solr/pull/2906 Thanks a lot freebsd@koenigbj.8bx.de to provide with the required sockstat parameters to make this PR possible. PR: 283270
* textproc/apache-solr: switch to version 9Matthias Fechner2023-06-191-31/+0
| | | | For more details look on 20230618 in UPDATING
* Revert "textproc/apache-solr: Update version 8.11.2=>9.0.0"Matthias Fechner2022-10-161-7/+7
| | | | | | | This reverts commit b224cb40ad545da1f09dcf0d8bafb8baf0e1b110. This upgrade break solr installation as additional work may be required to get the new version with existing collections working.
* textproc/apache-solr: Update version 8.11.2=>9.0.0Muhammad Moinur Rahman2022-10-081-7/+7
| | | | | | | | | | | | - Pet portclippy IMPORTANT NOTE: Data Import Handler has been removed from this version. Please use the third party community plugin from: https://github.com/rohitbemax/dataimporthandler Approved by: mfechner (By implicit mail in developers@) Sponsored by: Bounce Experts
* Update to 8.7.0.Matthias Fechner2021-01-011-5/+5
| | | | | | | | Changelog: https://lucene.apache.org/solr/8_7_0/changes/Changes.html Notes: svn path=/head/; revision=559814
* Update to 8.5.0.Matthias Fechner2020-03-301-8/+8
| | | | | | | | Changelog: https://lucene.apache.org/solr/8_5_0/changes/Changes.html Notes: svn path=/head/; revision=529888
* Stock apache-solr scripts use lsof during startup to check if Solr started ↵Larry Rosenman2017-04-181-0/+31
properly. When deploying Apache Solr in Jail lsof needs access to /dev/mem which is not allowed by default. Lack of the access makes the startup script run in the loop for 3 minutes and then it assumes that it might have succeed. Allowing access to /dev/mem makes running Solr in Jail a bit pointless. Following patch changes the behaviour of Solr startup script to use sockstat instead of lsof to check if Solr has already started. This also makes the dependency on lsof obsolete. While here, pet portlint. PR: 218654 Submitted by: Wiktor Niesiobedzki <bsd@vink.pl> Approved by: idefix@fechner.net (maintainer), adamw (mentor) Differential Revision: https://reviews.freebsd.org/D10416 Notes: svn path=/head/; revision=438757