How to restart orthanc server without restart machine(linux/debian)

I experiment with config file, and it is not convenient for me to reboot the machine every time. Is there a way to do this through the terminal?

On Debian, the Orthanc package installs a Linux service. You can restart it like any other service after modifying its configuration files in “/etc/orthanc/”, for instance:

sudo /etc/init.d/orthanc restart

Or:

sudo systemctl restart orthanc.service

Thanks!!