pilerimport failed to import: error=table 'piler1' absent #344
|
I have installed piler on Ubuntu 24.04 via DEB file. Now I want to import existing mails but get an error: From maillog From /var/log/manticore/query.log In "/var/piler/manticore" there are no files for: It seems like there should be more tables that somehow didn't get generated. What part of the installation should have done this and how can I fix it? |
Replies: 6 comments 1 reply
|
Run /etc/piler/manticore.conf (it's an executable file) to see the actual config. The check the RT constant settings in the file. I suspect that you have |
|
RT is 1, but as I had quite some problems with the installation, I think it's possible that at some point, it was 0. Didn't change it manually in that file, though. Did this but the files were not created: |
|
Show me the output of /etc/piler/manticore.conf |
|
Not good. It's the legacy main-delta indexing scheme, it requires you to manually create these indexes. Instead you need to double check manticore.conf, verify that the real time index settings are enabled, and then manticore creates the rt indexes automatically. So you need to tweak manticore.conf until it prints the expected configuration, whatever it takes. |
|
Well, this is the original file from the DEB from the project's GitHub page. I used
|
|
I found the culprit: Manticore was using the distribution's config file: As a solution, use After a restart, Manticore could be used by Piler. However, the status of Manticore daemon is shown as "activating (start)". Is this normal? |
I found the culprit: Manticore was using the distribution's config file:
As a solution, use
systemctl edit manticoreto override it:After a restart, Manticore could be used by Piler.
However, the status of Manticore daemon is shown as "activating (start)". Is this normal?
Maybe has to do with m…