系统相关
首页 > 系统相关> > [Linux]开机自启动脚本

[Linux]开机自启动脚本

作者:互联网

参考文档

自己写一个shell脚本

将写好的脚本(.sh文件)放到目录 /etc/profile.d/ 下,系统启动后就会自动执行该目录下的所有shell脚本。

通过chkconfig命令设置

编辑脚本
vi start-redis.sh

#!/bin/sh             告诉系统使用的shell,所以的shell脚本都是这样
#chkconfig: 35 20 80        分别代表运行级别,启动优先权,关闭优先权,此行代码必须
#description: redis server     自己随便发挥!!!,此行代码必须

# 脚本正式内容
nohup redis-server /home/hadoop/redis/redis.conf > /home/hadoop/redis/redis-server.log 2>&1 &

赋予脚本执行权限

chmod +x start-redis.sh

脚本移动到/etc/init.d/或者/etc/rc.d/init.d/目录下。(前者是后者的软连接)

mv start-redis.sh /etc/rc.d/init.d/

添加脚本到开机自动启动项目中。添加到chkconfig,开机自启动。

cd /etc/rc.d/init.d
chkconfig --add start-redis.sh
chkconfig start-redis.sh on

关闭开机启动

chkconfig start-redis.sh off

其他命令

# 6.从chkconfig管理中删除test.sh
[root@localhost ~]# chkconfig --del start-redis.sh
 
# 7.查看chkconfig管理
[root@localhost ~]# chkconfig --list start-redis.sh

标签:脚本,start,etc,redis,开机,sh,Linux,自启动,chkconfig
来源: https://blog.csdn.net/qq_18675693/article/details/123589024