Configure Linux Service
You can configure Import Station as a service in Linux.
To do this, just follow these steps:
-
Create a file called import-station.service inside the /etc/systemd/system folder
-
The file content should be:
[Unit]Description=import-stationAfter=syslog.target[Service]User=userToExecuteImportStationExecStart=/path/to/app/import-station.jarSuccessExitStatus=143[Install]WantedBy=multi-user.target -
To flag the application to start automatically on system boot, use the following command:
systemctl enable import-station.service