Mastodon: Difference between revisions
No edit summary |
|||
| Line 47: | Line 47: | ||
* If good, <tt>for in in web sidekiq streaming ; do sudo systemctl enable mastodon-$i ; done</tt> | * If good, <tt>for in in web sidekiq streaming ; do sudo systemctl enable mastodon-$i ; done</tt> | ||
** The units are now persistent, and ought start at system boot | ** The units are now persistent, and ought start at system boot | ||
==Full text search== | |||
If you're willing to run Java and a potentially-dodgy elasticsearch package (or build it from [https://github.com/elastic/elasticsearch source]), you can have full text search. Building from source is normally a pleasant endeavor, but who wants to fuck with gradle and all it implies? | |||
* <tt>sudo apt-get install default-jre-headless</tt> | |||
* <tt>wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -</tt> | |||
* <tt>sudo sh -c 'echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" > /etc/apt/sources.list.d/elastic-7.x.list'</tt> | |||
* <tt>sudo apt-get update && sudo apt-get install elasticsearch</tt> | |||