网站地图    收藏   

主页 > 系统 > windows >

重装windows系统后,如何重新将apache,mysql加入系统

来源:自学PHP网    时间:2015-04-17 17:13 作者: 阅读:

[导读] 重装windows7 64 位后,想把mysql加到系统服务里面,命令如下:mysqld exe --install,报以下错误:Install Remove of the Service Denied! 解决方案:此错误是由于当前用户没有管理员权限造成的。...

重装windows7 64 位后,想把mysql加到系统服务里面,

命令如下:

mysqld.exe --install,报以下错误:

Install/Remove of the Service Denied!

解决方案:

此错误是由于当前用户没有管理员权限造成的。开始——CMD.exe——右键,以管理员身份运行,然后按照以以下命令即可将mysql加到系统服务里面去

mysqld.exe --install

httpd.exe -k install

进阶:

1、mysql5.1以前版本用 mysqld-nt

2、指定服务名称 启动脚本

mysqld.exe --install mysql5.5 --defaults-file="D:\mysql5.5\my.ini"

httpd.exe -k install -n "Apache2.2" -f “D:\apache2.2\conf\httpd.conf

3、启动\停止服务

net start mysql

net start apache2.2

net stop mysql

net stop apache2.2

3、删除服务

mysqld.exe --remove

httpd.exe -k uninstall 或者 httpd.exe -k uninstall -n "Apache2.2"

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论