Skip to content

Instantly share code, notes, and snippets.

@mrl22
Last active May 26, 2022 12:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrl22/d3576562596f070212ee627548c1ab08 to your computer and use it in GitHub Desktop.
Save mrl22/d3576562596f070212ee627548c1ab08 to your computer and use it in GitHub Desktop.
Install and run IBM SPSS Licensing Manager as a systemctl / systemd service on RHEL / Debian Linux

wget https://softy.cac.washington.edu/spss/new/spss28/SPSSCLT9.9_-_LicMgrLinuxx86-64_En.gz

tar xvfz SPSSCLT9.9_-_LicMgrLinuxx86-64_En.gz

mkdir -p /opt/IBM/SPSS/Concurrent_Licensing_Tools/9.9.0/License_Manager

cp -rf sentinallm/* /opt/IBM/SPSS/Concurrent_Licensing_Tools/9.9.0/License_Manager/

nano /etc/systemd/system/lserv.service

  • Paste the attached file and save (ctrl+o, enter, ctrl+x)

systemctl daemon-reload

./licenseactivator <authorization code>

systemctl start lserv

systemctl enable lserv

[Unit]
Description=IBM SPSS Lserv
After=network.target
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=root
WorkingDirectory=/opt/IBM/SPSS/Concurrent_Licensing_Tools/9.9.0/License_Manager
ExecStart=/opt/IBM/SPSS/Concurrent_Licensing_Tools/9.9.0/License_Manager/lserv64
[Install]
WantedBy=multi-user.target
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment