美文网首页
添加服务器自启项

添加服务器自启项

作者: Patient_2fc9 | 来源:发表于2020-09-14 11:33 被阅读0次

1.新建文件/usr/local/autostart.sh,内容如下:

#!/bin/bash
#description:开机自动启动的脚本程序
/opt/lampp/lampp start
svnserve -d -r /opt/svn/

2.将/usr/local/autostart.sh脚本添加到开机启动项中
编辑 /etc/rc.d/rc.local,添加内容如下

sh /usr/local/autostart.sh > /dev/null  2&>1 &

3.给/usr/local/autostart.sh和/etc/rc.d/rc.local脚本赋可执行权限

chmod +x /usr/local/autostart.sh
chmod +x /etc/rc.d/rc.local

4.重启服务器进行测试

reboot

相关文章

网友评论

      本文标题:添加服务器自启项

      本文链接:https://www.haomeiwen.com/subject/pizaektx.html