Linux系统服务
(1)系统服务
chkconfig --list 查看系统服务
chkconfig test.sh on 开机启动
chkconfig test.sh off 取消开机启动
service httpd stop 停止该系统服务
service iptables start 启动该系统服务
service iptables restart 重启该系统服务
注:只要是yum安装的,都会做成系统服务
如果要开机启动的话,也可以在/etc/rc.d/rc.local文件中加入要开机执行的脚本
例如:要开机启动lampp,在/etc/rc.d/rc.local文件中加入/opt/lampp/lampp start即可