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.
- Create file rendering-service.service in
/etc/systemd/system
- 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
- Reload the service files to include the new service.
sudo systemctl daemon-reload
- Start your service
sudo systemctl start rendering-service.service
- To check the status of your service
sudo systemctl status rendering-service.service
- To enable your service on every reboot
sudo systemctl enable rendering-service.service
- To disable your service on every reboot
sudo systemctl disable rendering-service.service
- To see if your service is working
sudo systemctl --type=service