视频教程分类
首页 >运维 >CentOS > 正文

centos rc.local 启动不了怎么办

原创2022-01-17 11:52:221883 关注公众号:每天精选资源文章推送

centos rc.local启动不了的解决办法:1、查看“rc.loca”脚本内容;2、将文件“rc.local”加上可执行权限即可。

本文操作环境:centos7系统、Dell G3电脑。

centos rc.local 启动不了怎么办?

centos7-rc.local文件程序开机不能自启动?

centos7系统中,发现rc.local里程序开机不能自启动:

1、查看rc.loca脚本内容

[root@web01 ~]# cat /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.
 #这是强烈建议您创建自己的systemd服务或udev规则在启动运行脚本而不是使用这个文件
 
# 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.
#请注意,您必须运行chmod + x /etc/rc.d/rc.local,来确保执行开机启动该脚本。

2、验证1中所说的

结果查看权限时发现,rc.locat是链接文件,且没有可执行权限,rc.d有可执行权限。

[root@cc ~]# ll /etc/rc.local
lrwxrwxrwx. 1 root root 13 Jan 9 20:51 /etc/rc.local -> rc.d/rc.local
 
[root@cc ~]# ll /etc/rc.d/rc.local
-rw-r--r--. 1 root root 531 May 22 21:42 /etc/rc.d/rc.local
 
[root@cc ~]# ls -ld /etc/rc.d/
drwxr-xr-x. 10 root root 127 May 22 21:42 /etc/rc.d/

3、解决问题

接下来只需将文件rc.local加上可执行权限即可:

[root@cc ~]# chmod +x /etc/rc.d/rc.local
 
[root@cc ~]# ll /etc/rc.d/rc.local
-rwxr-xr-x. 1 root root 531 May 22 21:42 /etc/rc.d/rc.local

总结,之前只是在rc.local脚本中添加要开机启动的程序,并没有在意脚本中的说明,所以出错了。注释很重要,教你怎么用。  

推荐教程:《centos教程

以上就是centos rc.local 启动不了怎么办的详细内容,更多请关注php中文网其它相关文章!

20期PHP线上班

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

  • 相关标签:centos
  • 推荐:Linux视频教程零基础入门到精通

    相关文章

    相关视频


    专题推荐