Skip to main content

Rendering-service on Linux

1. Download

Get the latest rendering-service jar file here.

Unzip downloaded zipped jar file into your publishing server rendering-service subfolder.

2. Optional System Service creation

If you want to run your rendering-service automatically, you can create systemctl service.

  1. Create file rendering-service.service in /etc/systemd/system
  2. Edit the file and write the content:
[Unit]
Description=Rendering service

[Service]
WorkingDirectory=/opt/pubserver/rendering-service
ExecStart=/opt/pubserver/rendering-service/YOUR-START-SCRIPT.sh
Restart=always

[Install]
WantedBy=multi-user.target
  1. Reload the service files to include the new service.
sudo systemctl daemon-reload
  1. Start your service
sudo systemctl start rendering-service.service
  1. To check the status of your service
sudo systemctl status rendering-service.service
  1. To enable your service on every reboot
sudo systemctl enable rendering-service.service
  1. To disable your service on every reboot
sudo systemctl disable rendering-service.service
  1. To see if your service is working
sudo systemctl --type=service