Versions Compared

Key

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

...

Code Block
languagebash
titleExample for enabling JS7 components
linenumberstrue
collapsetrue
# make systemd read changes to service files
systemctl daemon-reload

# make systemd create a startup/shutdown configuration
systemctl enable controller
systemctl enable agent
systemctl enable joc

Explanations:

  • Note Ensure that the  controller service name corresponds to the controller.service service file name.
  • The command systemctl daemon-reload has to be re-executed after any later change to a service file.

...

Code Block
languagebash
titleExample for managing JS7 components
linenumberstrue
collapsetrue
# start, stop, restart and get status information of the Controller
systemctl start controller
systemctl stop controller
systemctl restart controller
systemctl status controller

Explanations:

  • Note Ensure that the controller service name corresponds to the controller.service. service file name.
  • The above examples apply similarly to the Agent and JOC Cockpit.

...