欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Linux开机自启动脚本

程序员文章站 2022-04-13 22:17:12
将需要开机自启动的脚本命令写在文件/etc/rc.d/rc.local中即可。 比如需要开机自启动MySql和Apache,则在/etc/rc.d/rc.local文件尾部加入两行命令: systemctl start mysqldsystemctl start httpd ......

将需要开机自启动的脚本命令写在文件/etc/rc.d/rc.local中即可。

比如需要开机自启动mysql和apache,则在/etc/rc.d/rc.local文件尾部加入两行命令:

systemctl start mysqld
systemctl start httpd