Home >Database >Mysql Tutorial >WindowsMysqlServer重启,log-bin路径配置

WindowsMysqlServer重启,log-bin路径配置

WBOY
WBOYOriginal
2016-06-07 16:20:061076browse

CMD下运行以下命令: net stop 服务名 net start 服务名 备注:服务名 通常默认为:mysql 即: net stop mysql net start mysql 备注: 查看服务名的方式: 在桌面-右键计算机-选择管理-选择服务和应用程序-服务: 在服务到找到名称与Mysql相应的,一般情况

   CMD下运行以下命令:

  net stop

  net start

  备注: 通常默认为:mysql

  即:

  net stop mysql

  net start mysql

  备注:

  查看服务名的方式:

  在桌面->右键“计算机“->选择"管理”->选择”服务和应用程序“->”服务": 在服务到找到名称与Mysql相应的,一般情况下应该就是Mysql Server的服务名了。如Mysql56等。

  想要关闭与打开服务,一般情况下要求cmd是“以管理员的形式打开的”

  在Windows系统下,,对mysql的my.ini的log-bin等进行配置目录位置时,假设要将log-bin的日志配置到D盘的mysqllog的文件为binlog。则可以如下配置 :

  [mysqld]

  log-bin="D:mysqllog/binlog" 注意:在这里的最后一个路径采用的是"/"而不是Windows文件系统的“"

Statement:
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