Centos7 开机自动启动服务

第一种方法:

在 /etc/rc.d/rc.local 的文件中添加你要开机启动服务的绝对路径;

第二种方法:

写一个脚本(用stop或satart来控制服务的启动), 把这个脚本放入: /etc/rc.d/init. d 中并给它可执行权限(chmod a+x); 这样就可以用service启动啦,

如果你还想开机启动的话, 就把:

# chkconfig: 2345 10 90
# description: Activates/Deactivates all xxx interfaces configured to \
#              start at boot time.
放入脚本中, 位于

#!/bin/bash

之后,  再用命令:

chkconfig --add 脚本名

到这一步就OK了, 可以用chkconfig --list查看, 脚本有没有在里面;


如果考虑当前的启动级别的话, 可以用chkconfig --level来设置;

你可能感兴趣的:(Linux)