Home > Database > Mysql Tutorial > body text

MYSQL 没有完全卸载将导致其安装不成功

WBOY
Release: 2016-06-07 18:01:10
Original
934 people have browsed it

安装MYSQL不成功,一般是因为服务器可能安装过MYSQL而没有完全卸载。

如遇到MYSQL启动不了的下列情况:无论双击mysqld.exe还是使用命令行,都没反映。查看我的电脑->管理->服务与应用程序->服务->mysql->启动,得到的结果为路径错误或意外终止,则需卸载服务然后重装。
  具体卸载方法如下
  卸载mysql服务
  新建并编辑内容如下的一个bat文件执行之
   代码如下:
@ECHO OFF
  net stop mysql
  c:\mysql\bin\mysqld-nt.exe -remove
  pause
  然后再重装一下MYSQL,安装方法如下
  新建并编辑内容如下的一个bat文件,执行之
  @ECHO OFF
  e:\mysql\bin\mysqld-nt.exe -install
  net start mysql
  pause

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template