Searching mail error "Server Error: UID SEARCH: Internal error" when Full Text Search (Solr) indexing is enabled, resolves when disabled.
-
@girish, now I’m starting to wonder if the thing was just indexing then that particular mailbox. The mailbox they have is around 15 GB, so 150 minutes approximately would be “down” for searching after they initiate the first search. If that is what was happening… I wonder… is there a way from the command line I can trigger it to index all mailboxes that haven’t been indexed already? My thinking is I could have it running overnight and then when they walk in to start the day it works as expected for them.
-
@d19dotca If you exec into the mail container, you can run
doveadm index -u mail@domain.com '*'
. That does the indexing . Maybe the solr index got corrupt and it's throwing some errors?You can also see the logs in
/run/solr/solr.log
To clear the index:
- Exec into the mail container (docker exec -ti mail /bin/bash)
- supervisorctl stop dovecot
- supervisorctl stop solr
- rm -rf /app/data/solr/dovecot
- supervisorctl start solr
- gosu cloudron:cloudron /app/code/solr/bin/solr create -c dovecot
- supervisorctl start dovecot
- doveadm index -u mail@domain.com '*'
-
I just enabled Solr and then immediately went into the mail container and see the following errors (which seems to jive closely with what webmail returned earlier):
root@3cbcbbb04246:/app/code/haraka# doveadm index -u <redacted> '*' doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Trash: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Junk: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Archive: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Deleted Messages: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Sent Messages: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Receipts: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Spam: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Drafts: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox Sent: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18] doveadm(<redacted>): Error: fts_solr: Lookup failed: 500 Server Error doveadm(<redacted>): Error: Mailbox INBOX: Status lookup failed: Internal error occurred. Refer to server log for more information. [2024-12-19 07:11:18]
-
I disabled Solr for now to avoid any issues with my clients. I'd love to make this work though, I'm not sure how to find out what's going wrong with it. The logs don't seem to show anything that I can find. Is there perhaps Solr logs on their own that I'm missing?
-
I also seem to get the same errors by the way if I use a command I found to immediately index all users by using:
doveadm index -A '*'
from the mail container, but it outputs the errors for each mailbox user and folder of course.Any suggestions on next steps?
-
One last update, I re-enabled Solr and then followed your steps above for clearing the index, and then re-ran the
doveadm index -A '*'
and now I get a400 Bad Request
lookup failed message instead of the500 server error
earlier. I've disabled it again now. -
-
That's great, thanks @girish! It seems to work now. I enabled it and followed the steps in the new documentation you linked to, and then ran
doveadm -c /run/dovecot.conf index -A '*'
from the mail container which started indexing everything. Just waiting for the indexing to finish to confirm it'll be good.