Re: NGinx .conf Setup for Solr

2024-06-01 Thread Jim Morgan
This guide is a bit old, but should at least give you an idea of how it fits together. https://curiousprogrammer.dev/blog/setting-up-solr-on-nginx-with-lets-encrypt/| On Sun, Jun 2, 2024 at 11:41 AM Jim Morgan wrote: > Absolutely a valid plan. Nginx as reverse proxy with SSL termination

Re: NGinx .conf Setup for Solr

2024-06-01 Thread Jim Morgan
Absolutely a valid plan. Nginx as reverse proxy with SSL termination and certbot is well documented. You might also consider moving the basic Auth into nginx. Or alternatively you can control access by allowing/denying certain IP addresses. On Sun, Jun 2, 2024 at 9:24 AM Lee Daniel wrote: > He

Re: upgrade solr cluster from version 8.6 to 8.11.3

2024-02-21 Thread Jim Morgan
Have just been through this from 8.5 to 8.11. Was able to complete the upgrade in one leap, with only a couple of 'deprecation' errors to fix afterwards. Would suggest you try on a dev/staging copy first if at all possible. However the process is basically to unzip the new code into /opt, stop sol

Re: Solr authentication options

2023-12-15 Thread Jim Morgan
I guess one option would be running it behind a proxy (nginx, varnish, haproxy etc) and adding the authentication at that level. This also means you can use the proxy as an SSL terminator and so secure traffic. On Sat, Dec 16, 2023 at 3:03 AM Rahul Goswami wrote: > Hello, > I am using Solr 8.11.

Re: Solr Indexing cronjob

2023-12-13 Thread Jim Morgan
The first one will sometimes fail when there are unusual characters in the password. I'd either use -u "user:password" (in quotes) or -H "Authorization: Basic 98sdfsasdfasdkjwere" where you're providing the hash of user and password as a Header. The end of the command just deals with any output. >

Re: Java Upgrade process

2023-12-13 Thread Jim Morgan
:+CMSParallelRemarkEnabled \ -XX:+ParallelRefProcEnabled" ENABLE_REMOTE_JMX_OPTS="false" SOLR_OPTS="$SOLR_OPTS -Xss256k" SOLR_OPTS="$SOLR_OPTS -Dlog4j2.formatMsgNoLookups=true" === On Wed, Dec 13, 2023 at 4:09 PM Jim Morgan wrote: > I've had

Re: Java Upgrade process

2023-12-13 Thread Jim Morgan
.org/guide/solr/latest/deployment-guide/taking-solr-to-production.html#log-settings > > : Date: Tue, 12 Dec 2023 10:57:37 +0800 > : From: Jim Morgan > : Reply-To: users@solr.apache.org > : To: users@solr.apache.org > : Subject: Re: Java Upgrade process > : > : Fair point Chris, I should

Re: Java Upgrade process

2023-12-11 Thread Jim Morgan
ls after > about 2 minutes." ... what message does it print to the consolr? what > does the solr log file say? > > > > : Date: Mon, 11 Dec 2023 11:36:15 +0800 > : From: Jim Morgan > : Reply-To: users@solr.apache.org > : To: users@solr.apache.org > : Subject: Java Upgr

Java Upgrade process

2023-12-10 Thread Jim Morgan
A few months back, I had a question about upgrading Solr. I was trying to upgrade from 8.5 to 9.3. That introduced a few errors into our website search that we were not able to resolve, so we've figured we'll just upgrade to the latest 8.x version, ie. 8.11. We've successfully upgraded the underly

Re: Backup from old server and Restore to new server

2023-10-02 Thread Jim Morgan
Yes, sorry, I thought I'd mentioned that it was a standalone server in the original message. Appreciate the feedback. With respect to re-indexing, one of the devs claims to have a script which will read the contents of the old solr core item by item and insert it into the new server. From what you

Re: Backup from old server and Restore to new server

2023-09-27 Thread Jim Morgan
it from schema.xml. So now its running at least on 8.11. Will try more tomorrow On Wed, Sep 27, 2023 at 4:16 PM Jim Morgan wrote: > OK, so I had some more time to work on this. I removed version 9.3 and > tried with version 8.11. But still the same story: any of the API restore > methods

Re: Backup from old server and Restore to new server

2023-09-27 Thread Jim Morgan
you're at it, you can also read the upgrade notes > >> > https://solr.apache.org/guide/solr/latest/upgrade-notes/major-changes-in-solr-9.html > >> and see if you are affected by any of the breaking changes. > >> > >> If you're running legacy setup (not Cl

Re: Backup from old server and Restore to new server

2023-09-27 Thread Jim Morgan
rformance. > So before moving I would be sure if I can and what I gain from it. > For example in the Solr 9.x the Data Import Handler has been moved out to > an external component, still open source but it is external. > > On Mon, Sep 25, 2023 at 11:13 AM Jim Morgan > > wrote

Re: Backup from old server and Restore to new server

2023-09-25 Thread Jim Morgan
x27;m not sure that moving to the latest solr version is a good > idea, what do you think to gain moving immediately to the latest version? > Maybe better move to the latest solr 8 version > > On Mon, Sep 25, 2023 at 10:10 AM Jim Morgan > > wrote: > > > Quick response! There

Re: Backup from old server and Restore to new server

2023-09-25 Thread Jim Morgan
your > folder in the new Solr's SOLR_HOME folder and you don't need > any API calls to create the core. > > Jan > > > 25. sep. 2023 kl. 10:12 skrev Jim Morgan >: > > > > Thanks Jan. I've read that around the internet too. Are you saying that I >

Re: Backup from old server and Restore to new server

2023-09-25 Thread Jim Morgan
t; And finally, switch your search app to the new server. > > Jan > > > 25. sep. 2023 kl. 09:40 skrev Jim Morgan >: > > > > Hi, > > I inherited a solr installation from a previous sysadmin, and we'd like > to > > see if we can move it from the cur

Re: Backup from old server and Restore to new server

2023-09-25 Thread Jim Morgan
cenzo D'Amore wrote: > Hi Jim, > > how many cores (indexes) do you have in this Solr server? > > On Mon, Sep 25, 2023 at 9:41 AM Jim Morgan > wrote: > > > Hi, > > I inherited a solr installation from a previous sysadmin, and we'd like > to > > s

Backup from old server and Restore to new server

2023-09-25 Thread Jim Morgan
Hi, I inherited a solr installation from a previous sysadmin, and we'd like to see if we can move it from the current server to a new one. I don't have much knowledge of solr, but I know my way around Linux. Apologies in advance for any dumb questions, and please feel free to educate me. Old insta