How to automatically start the Spotfire Server on server reboot in Linux
Solution:
This article will provide information on how to configure the Spotfire Server to start at boot, so when a server gets rebooted, Spotfire will start automatically.
By default Spotfire Server is not set to start on boot on the supported Linux machines. Below are the steps to have a program or script start on boot on a Linux machine, if you use the RPM install package.
Become root user on your Linux server
Create or copy your script under /etc/init.d/
You can set it to boot by running either one of these commands (on Redhat).
Recommended for Redhat 7 or newer: systemctl enable tss-versionnumber
For example: systemctl enable tss-10.3.0
Or alternatively: chkconfig --add tss-versionnumber chkconfig tss-versionnumber
4. Confirm script is added successfully with --list command: chkconfig --list tss-versionnumber
5. This script will be called to start services on Linux boot.
Note: In case you need to disable auto-start, then you can use the following commands:
systemctl disable tss-versionnumber
or:
chkconfig tss-versionnumber off
Doc: Installing the Spotfire Server files (RPM Linux) https://docs.tibco.com/pub/spotfire_server/10.3.4/doc/html/TIB_sfire_server_tsas_admin_help/GUID-05DC8A81-C11F-4D46-B111-2BDAA7B9EBBC.html
External: How to auto start services in Linux on boot https://geekflare.com/how-to-auto-start-services-on-boot-in-linux/
Comments
0 comments
Article is closed for comments.