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中所说的
轻舟办公
基于AI的智能办公平台
194 查看详情
结果查看权限时发现,rc.locat是链接文件,且没有可执行权限,rc.d有可执行权限。
[root@cc ~]# ll /etc/rc.locallrwxrwxrwx. 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 启动不了怎么办的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/377485.html
微信扫一扫
支付宝扫一扫