centos rc.local 启动不了怎么办

网友投稿 1899 2022-10-11

本站部分文章、图片属于网络上可搜索到的公开信息,均用于学习和交流用途,不能代表睿象云的观点、立场或意见。我们接受网民的监督,如发现任何违法内容或侵犯了您的权益,请第一时间联系小编邮箱jiasou666@gmail.com 处理。

centos rc.local 启动不了怎么办

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.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教程》

php入门到就业线上直播课:查看学习

上一篇:详细解析Linux中top命令参数
下一篇:linux查看隐藏文件夹的命令是什么
相关文章

 发表评论

暂时没有评论,来抢沙发吧~