Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Log in to the server via SSH. View our guide on locating your service credentials, if needed.
  2. 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
    languagebash
    titlesystemctl 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
    languagebash
    titleCheck 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
hiddentrue
Related issues