centos rc.local 启动不了怎么办

centos rc.local 启动不了怎么办,第1张

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.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 启动不了怎么办的详细内容,

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/yw/709545.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-24
下一篇 2022-04-24

发表评论

登录后才能评论

评论列表(0条)

保存