一、自己带的方法
安装mysql的windows系统服务: ${mysql.home}\bin\mysqld-nt --install;
卸载mysql的windows系统服务: ${mysql.home}\bin\mysqld-nt --remove
二、SC方法
1)创建服务:sc create “服务名" binpath=空格"X:\*.*(路径)" start= auto DisplayName= “XXX YYY ZZZ”
2)删除服务:sc delete "服务名"
3)开启服务:net start "服务名"
4)关闭服务:net stop "服务名"