Standaardpoorten
Manticore luistert standaard op de volgende poorten:
- MySQL-clients:
9306 - HTTP/HTTPS-verbindingen:
9308 - Binaire API / node-verbindingen:
9312
Deze poorten zijn gebonden aan localhost standaard.
Gebruik voor toegang op afstand een SSH-tunnel of configureer de service om op een geschikte netwerkinterface te luisteren.
MySQL-client
Maak lokaal verbinding vanaf de server:
mysql -h0 -P9306
SSH-tunnel
Bijvoorbeeld, om de HTTP-interface op afstand te benaderen via een SSH-tunnel:
ssh -N -L 9308:127.0.0.1:9308 root@<SERVER-IP>
Benader Manticore vervolgens lokaal via: http://127.0.0.1:9308
Data en logs
- Configuratie:
/etc/manticoresearch/manticore.conf - Data:
/var/lib/manticore - Logs:
/var/log/manticore - Systemd-logs:
sudo journalctl -u manticore
Servicebeheer
Manticore herstarten:
sudo systemctl restart manticore
Servicestatus controleren:
sudo systemctl status manticore
Manticore stoppen:
sudo systemctl stop manticore
Manticore starten:
sudo systemctl start manticore
Controleer of Manticore automatisch start bij het opstarten:
sudo systemctl is-enabled manticore
Automatisch starten uitschakelen:
sudo systemctl disable manticore
Automatisch starten inschakelen:
sudo systemctl enable manticore