Linux配置开机自启动的两种方法

一、通过rc.local该文件实现开机自启

1:编写测试脚本

[root@host1 ~]# vim test.sh

#!/bin/bash

/bin/echo $(/bin/date +%F_%T) >> /tmp/test.log

##开机启动打印当前时间输出到test.log文本里

2:测试脚本完成之后,更改rc.local配置文件

[root@host1 ~]# vim /etc/rc.d/rc.local

#!/bin/bash

# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES

#

# It is highly advisable to create own systemd services or udev rules

# to run scripts during boot instead of using this file.

#

# In contrast to previous versions due to parallel execution during boot

# this script will NOT be run after all other services.

#

# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure

# that this script will be executed during boot.

touch /var/lock/subsys/local

/bin/bash /tmp/test.sh >/dev/null 2>/dev/null ##加上这一段配置,让其开机执行

保存退出

3:在centos7中,/etc/rc.d/rc.local没有执行权限,需要授权,然后就可以重启机器验证就行了

[root@host1 ~]# chmod +x /etc/rc.d/rc.local

4:重启之后查看结果

[root@host1 ~]# cat /tmp/test.log

2019-06-02_16:44:53

二、通过chkcongfig开机启动服务来实现

1:在/etc/init.d/编辑一个测试脚本

[root@host1 ~]# vim /etc/init.d/test

#!/bin/bash

# chkconfig: 3 88 88

/bin/bash /tmp/test.sh >/dev/null 2>/dev/null

保存退出

2:赋予执行权限

[root@host1 ~]# chmod 755 /etc/init.d/test

3:加入开机启动服务列表

[root@host1 ~]# chkconfig --add test

4:查看开机启动服务列表

[root@host1 ~]# chkconfig --list

注:该输出结果只显示 SysV 服务,并不包含

原生 systemd 服务。SysV 配置数据

可能被原生 systemd 配置覆盖。

要列出 systemd 服务,请执行 'systemctl list-unit-files'。

查看在具体 target 启用的服务请执行

'systemctl list-dependencies [target]'。

netconsole 0:关 1:关 2:关 3:关 4:关 5:关 6:关

network 0:关 1:关 2:开 3:开 4:开 5:开 6:关

test 0:关 1:关 2:关 3:开 4:关 5:关 6:关

5:重启系统之后查看结果

[root@host1 ~]# cat /tmp/test.log

2019-06-02_16:44:53

2019-06-02_16:48:45

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值