centos设置开启自动启动服务
1、编写服务或程序启动脚本
命令:vi /opt/abaqus-lmgrd.sh
输入启动脚本内容,如:#!/bin/bash
sudo /usr/SIMULIA/License/2022/linux_a64/code/bin/lmgrd -c /usr/SIMULIA/License/2022/linux_a64/code/bin/ABAQUSLM__lmgrd__SSQ.lic
2、赋予脚本可执行权限
命令:chmod +x /opt/abaqus-lmgrd.sh
3、使用命令打开/etc/rc.d/rc.local文件,在末尾增加如下内容
命令:vi /etc/rc.d/rc.local
在文末添加如下脚本:
/opt/abaqus-lmgrd.sh
4、在centos可能存在/etc/rc.d/rc.local的权限被降低了,需要执行如下命令赋予其可执行权限
使用命令:chmod +x /etc/rc.d/rc.local