Systemctl is a Linux command-line utility used to control and manage systemd and services. It is a collection of system management libraries, utilities, and daemons that function as a successor to the System V init daemon.
In this article you will learn about- Start Or Stop Services on Linux for Akeneo.
1. List all services:
systemctl list-unit-files --type service -all
2. Command Start:
Syntax:
sudo systemctl start service.service
The command start serves for starting (activate) one or more units specified on the command line.
Example:
sudo systemctl start mysql.service

3. Command Stop:
Syntax:
sudo systemctl stop service.service
The command stop serves for stopping the service or (deactivate) one or more units specified on the command line.
Example:
sudo systemctl stop mysql.service



4. Command Status:
Syntax:
sudo systemctl status service.service
The command status serves to check the status of the service. The status command provides information about a service. It also lists the running state, or detail on why it is not running, or if a service has been stopped unintentionally.
Example:
sudo systemctl status mysql.service



5. Command Restart:
Syntax:
sudo systemctl restart service.service
The command restart serves for restarting the service in execution. Stop and then start one or more units specified on the command line. If the units are not running yet, they will be started.
Example:
sudo systemctl restart mysql.service



6. Command Enable:
Syntax:
sudo systemctl enable name_service.service
The enable command serves for executing the service since the initialization if consists of one or more units or unit instances. This will create a set of symlinks, as encoded in the [Install] sections of the indicated unit files. the system manager configuration is reloaded (in a way equivalent to daemon-reload), in order to ensure the changes are taken into account immediately.
Example
sudo systemctl enable mysql.service



7. Command Disable:
Syntax:
sudo systemctl disable name_service.service
The disable command serves for withdrawing the service since the initialization of one or more units. This removes all symlinks to the unit files backing the specified units from the unit configuration directory and hence undoes any changes made by enabling or link.
Example:
sudo systemctl disable mysql.service



Support
That is all about the Start Or Stop Services on Linux for Akeneo. Moreover, if you have any doubts or queries regarding the extension get back to us at [email protected] or create a ticket at our HelpDesk system.