linux添加开机启动脚本
Posted jabbok
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux添加开机启动脚本相关的知识,希望对你有一定的参考价值。
[[email protected] ~]# ll /etc/rc.local lrwxrwxrwx. 1 root root 13 Mar 12 22:20 /etc/rc.local -> rc.d/rc.local #rc.local中的命令,会在boot时执行 #rc.local文件默认没有执行权限,这样不会boot运行,需要添加x权限。
[[email protected] ~]# cat /etc/rc.local #!/bin/bash touch /var/lock/subsys/local /bin/sh /etc/init.d/zabbix_agent.sh /bin/sh /etc/init.d/mysqld.sh #把需要执行的命令写入文件
[[email protected] ~]# ll /etc/init.d/ | grep sh -rwxr-xr-x 1 root root 69 Aug 6 19:58 mysqld.sh -rwxr-xr-x 1 root root 77 Aug 6 20:02 zabbix_agent.sh #相关的脚本,记得都加上x权限
以上是关于linux添加开机启动脚本的主要内容,如果未能解决你的问题,请参考以下文章