This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
en:tms-search-service [2023/03/01 15:18] Денис Цыганов |
en:tms-search-service [2025/04/02 16:36] (current) Денис Цыганов |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | + | The documentation for configuring the TMS Search Service is available at the following [[https://docs.tvip.tv/ru/tms/usage/search.html|link]]. | |
- | + | ||
- | ====== TMS Search Service ====== | + | |
- | + | ||
- | + | ||
- | 1. Installing elasticsearch on Ubuntu | + | |
- | + | ||
- | <code> | + | |
- | sudo echo "deb http://deb.packages.tvip.tv/ xenial main" >> /etc/apt/sources.list.d/tms.list | + | |
- | sudo wget --quiet -O - http://deb.packages.tvip.tv/deploy/key.asc | apt-key add - | + | |
- | sudo apt-get update | + | |
- | sudo apt-get install elasticsearch | + | |
- | </code> | + | |
- | + | ||
- | 2. Editing configuration file of elasticsearch - **/etc/elasticsearch/elasticsearch.yml** Add this options in configure file: | + | |
- | <code> | + | |
- | discovery.type: single-node | + | |
- | network.host: 0.0.0.0 | + | |
- | http.port: 9200 | + | |
- | xpack.security.enabled: true | + | |
- | indices.memory.index_buffer_size: "30%" | + | |
- | </code> | + | |
- | + | ||
- | 3. Run and configures the system to start the service at next boot: | + | |
- | <code> | + | |
- | sudo systemctl enable elasticsearch | + | |
- | sudo systemctl start elasticsearch | + | |
- | </code> | + | |
- | + | ||
- | 4. Add user | + | |
- | <code> | + | |
- | /usr/share/elasticsearch/bin/elasticsearch-users useradd tms -r superuser -p your_password | + | |
- | </code> | + | |
- | + | ||
- | 5. Update configuration file manager-tvip-tms-search **/opt/tvip-tms/manager/manager-tvip-tms-search/application-prod.yml** | + | |
- | + | ||
- | <code> | + | |
- | elasticsearch: | + | |
- | host: 127.0.0.1 | + | |
- | port: 9200 | + | |
- | scheme: http | + | |
- | username: tms | + | |
- | password: your_password | + | |
- | refresh-interval: 60s | + | |
- | number-of-shards: 1 | + | |
- | </code> | + | |
- | + | ||
- | * //host// - ip address or domain name of server with elasticsearch\\ | + | |
- | * //username// - username from step 4.\\ | + | |
- | * //password// - password from step 4. \\ | + |