Overview
Restarting the Kerio Connect service is performed quite often during troubleshooting as it refreshes the connection.
This article explains the correct way to stop and start the Kerio Connect service on the Mac and Linux operating systems.
Contents:
Process
macOS
Via Kerio Connect Monitor
- Launch the Kerio Connect Monitor.
-
Click on the lock symbol and type your macOS password.
-
Click Stop Server.
-
To start the server, relaunch the Kerio Connect Monitor, and this time, click Start Server.
Via Terminal/SSH
- Log in to SSH.
- Run the following commands:
sudo su - root
<Enter your root password. In most cases, it is the same as your macOS password.>
/usr/local/kerio/mailserver/KerioMailServer stop - To start the service, run the following command:
/usr/local/kerio/mailserver/KerioMailServer start
Linux
Debian
To stop and start the Kerio Connect service on Debian, use the following commands:
- To stop:
sudo service kerio-connect stop
- To start:
sudo service kerio-connect start
- To restart:
sudo service kerio-connect restart
RPM
The script that provides the automatic start-up of the daemon (Kerio Connect engine) on system reboot is located in the /etc/init.d
folder.
Alternatively, use the following commands to start or stop the daemon manually. To run these commands, Kerio Connect must be run by a root user:
- To stop:
/etc/init.d/kerio-connect stop
- To start:
/etc/init.d/kerio-connect start
- To restart:
/etc/init.d/kerio-connect restart
If your distribution has systemd available, use these commands:
- To stop the Kerio Connect engine:
systemctl stop kerio-connect.service
- To run the Kerio Connect engine:
systemctl start kerio-connect.service