CentOS中在/etc/rc.local添加开机自启动项启动失败

应项目要求需要在开机的时候启动自己的Agent程序,想当然的直接就往/etc/rc.local当中添加启动命令,结果重启之后发现什么都没有发生....一开始还以为是Python路径的问题,结果改成绝对路径之后还是一样,一番搜索之后发现原来是权限问题,执行chmod a+x /etc/rc.d/rc.local解决问题。

其实/etc/rc.local的说明当中已经说的很清楚了, /etc/rc.local只是为了兼容而设置的,若要执行需要为/etc/rc.d/rc.local添加执行权限,看来还是不能慌呀,项目再忙也不能乱了手脚,本来这种稍微看下文档说明就解决了的问题,结果还是瞎折腾了一下,磨刀不误砍柴工,古人诚不欺我。

  1. /etc/rc.local实为/etc/rc.d/rc.local的软连接
[root@10-10-50-109 ~]# ls -l /etc/rc.local 
lrwxrwxrwx 1 root root 13 May 26 09:38 /etc/rc.local -> rc.d/rc.local
  1. /etc/rc.d/rc.local默认权限为不可执行
[root@10-10-50-109 ~]# ls -l /etc/rc.d/rc.local 
-rw-r--r-- 1 root root 473 Apr 13 03:57 /etc/rc.d/rc.local
[root@10-10-50-109 ~]# 
  1. /etc/rc.local当中的说明
[root@10-10-50-109 ~]# cat /etc/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.
#
# 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.

touch /var/lock/subsys/local
[root@10-10-50-109 ~]# 
posted @   乔栋  阅读(3758)  评论(1编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示