Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fixed width seems to solve the problem

...

Once configuration file is ready, execute the following commands (based on the examples above) to install and start CHARON-VAX as a daemon:

Red Hat Linux 6.x

# ln -sf /my_services/mv3k6_service /etc/init.d/mv3k6_service
# chkconfig mv3k6_service on
# service mv3k6_service start

Red Hat Linux 8.x, 7.x and CentOS 8.x, 7.x

# systemctl enable mv3k6.service
# systemctl start mv3k6.service


Info
titleRed Hat Linux 7.x and CentOS 7.x

If you update the /usr/lib/systemd/system/<my virtual machine>.service file, the following command must be executed in order to take changes into account:

# systemctl daemon-reload

...

To stop a CHARON-VAX daemon, use the following commands.

Example:

Red Hat Linux 6.x

# service mv3k6_service stop

Red Hat Linux 8.x, 7.x and CentOS 8.x, 7.x

# systemctl stop mv3k6

(warning) Please note that before stopping a CHARON-VAX service, a clean shutdown of the operating system running on the virtual machine has to be performed.

...

To remove a CHARON-VAX daemon use the following commands.

Example:

Red Hat Linux 6.x

# chkconfig mv3k6_service off
# chkconfig --del mv3k6_service
# rm -f /etc/init.d/mv3k6_service

Red Hat Linux 8.x, 7.x and CentOS 8.x, 7.x

# systemctl disable mv3k6.service
# rm -f /usr/lib/systemd/system/mv3k6.service 

(warning) Please note that before removing a CHARON-VAX service, a clean shutdown of the operating system running on the virtual machine has to be performed and the service has to be stopped.

...