Skip to content

Instantly share code, notes, and snippets.

@tjuyy
Created December 8, 2020 09:50
Show Gist options
  • Save tjuyy/9c6255165e6865873b20516a1efdbf10 to your computer and use it in GitHub Desktop.
Save tjuyy/9c6255165e6865873b20516a1efdbf10 to your computer and use it in GitHub Desktop.
Synopsys SCL lmgrd systemd sevice
# /etc/systemd/system/my-lmgrd.service
# ref: https://www.synopsys.com/support/licensing-installation-computeplatforms/licensing.html#start_scl
[Unit]
Description=Synopsys lmgrd and snpslmd service
After=network.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/opt/synopsys/scl_11.9/amd64/bin/lmgrd -c /opt/synopsys/license/Synopsys.dat -l /opt/synopsys/license/license.log
ExecStop=/opt/synopsys/scl_11.9/amd64/bin/lmdown -c /opt/synopsys/license/Synopsys.dat -q
TimeoutStopUSec=5
[Install]
WantedBy=multi-user.target
@tjuyy
Copy link
Author

tjuyy commented Dec 8, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment