mysql启动、停止

MySQL在windows、Linux的启动、停止的方法
一、windows
[1.]mysqld-nt 适合在没有安装windows服务时

  • 启动 在cmd下切换到mysql\bin\目录下,输入 start mysqld
  • 停止 在cmd下切换到mysql\bin\目录下,输入 mysqladmin -u root shutdown

[2.]以Windows服务的方式启动
这种方式的前提是已经安装MySQL服务,在cmd输入services.msc回车,打开系统服务确认是否已经安装MySQL服务

  • 安装服务: 运行cmd,将路径切换到:\mysql\bin下输入命令:mysqld –install 或者 mysqld-nt –install,如果安装成功会有提示 “Service successfully installed”
  • 启动 net start mysql
  • 停止 net stop mysql

二、linux
[1.]启动

  • 1、使用 service 启动:service mysqld start
  • 2、使用 mysqld 脚本启动:/etc/inint.d/mysqld start
  • 3、使用 safe_mysqld 启动:safe_mysqld&

[2.]停止

  • 1、使用 service 启动:service mysqld stop
  • 2、使用 mysqld 脚本启动:/etc/inint.d/mysqld stop
  • 3、mysqladmin shutdown

[3.]重启

  • 1、使用 service 启动:service mysqld restart
  • 2、使用 mysqld  脚本启动:/etc/inint.d/mysqld restart

原创文章,转载请注明: 转载自micmiu – 软件开发+生活点滴[ http://www.micmiu.com/ ]

本文链接地址: http://www.micmiu.com/db/mysql/mysql-start-stop/

发表评论?

0 条评论。

发表评论


注意 - 你可以用以下 HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">