Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
sudo supervisorctl status
# this should output then something similar to:
termtagger:termtagger_9001       RUNNING   pid 18505, uptime 0:01:07

SysVinit init.d startup script (alternative method - not recommended)

To have openTMStermTagger running on start up, you should start and stop the TermTagger with an init.d script.

...

Code Block
languagebash
sudo chmod 755 /etc/init.d/openTMSTermTagger
sudo update-rc.d openTMSTermTagger defaults
sudo /etc/init.d/openTMSTermTagger start


SystemD start script (alternative method - not recommended)

Code Block
languagebash
titleEnsure that the start and stop scripts delivered with translate5 are executable:
sudo chmod u+x /var/www/translate5/application/modules/editor/ThirdParty/XliffTermTagger/startServer.sh
sudo chmod u+x /var/www/translate5/application/modules/editor/ThirdParty/XliffTermTagger/stopServer.sh

...