Linux注册系统服务
注册一个系统服务,开机自启动.
#vim test.sh
# chmod 700 test.sh# cp test.sh /etc/init.d/# chkconfig --add test.sh# chkconfig --list3.删除服务# chkconfig --del test.sh
# chmod 700 test.sh
# cp test.sh /etc/init.d/
# chkconfig --add test.sh
# chkconfig --list
# chkconfig --del test.sh