centos rc.local 启动不了怎么办

2022-01-17 13:35:50

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 启动不了怎么办的详细内容,更多请关注dnjidi.com其它相关文章!

相关阅读

推荐阅读

热门话题

更多

阅读排行

更多
当前位置:Centos>>正文