...
- Log in to the server via SSH. View our guide on locating your service credentials, if needed.
- Run your desired systemctl command below. If your control service name is different than the usual lucee_ctl then reference the correct name:
Code Block language bash title systemctl example commands # Command to check the status of the Lucee service systemctl status lucee_ctl # Command to restart Lucee (will attempt to stop, then start up Lucee) systemctl restart lucee_ctl # Command to stop Lucee systemctl stop lucee_ctl # Command to start Lucee systemctl start lucee_ctl
If you want to make sure that Lucee stopped, then there are a few options:Code Block language bash title Check check if service is running # Command to check Lucee port (if listening then service is running) netstat -tul | grep "8888" # or newer package to check Lucee port ss -tul | grep "8888" # Command to list processes running on system, then searching for keyword "lucee" ps aux | grep "lucee"
...
Page properties | ||
---|---|---|
| ||
|