当linux服务器开机时,会将 /etc/rc.d/rc.local 中的指令全部执行一遍,
因此将相应服务的启动指令放到该shell脚本中即可实现开机启动效果;
在 /etc/rc.d/rc.local 末尾加入
/usr/local/http2/bin/apachectl start #apache服务启动指令
/usr/local/mysql/bin/mysqld_safe --user=mysql & #mysql服务的启动指令
service vsftp start #ftp服务启动指令