Home > Database > Mysql Tutorial > MySQL的启动和连接_MySQL

MySQL的启动和连接_MySQL

WBOY
Release: 2016-06-01 13:59:33
Original
902 people have browsed it

一、查看并启动MySQL服务。

  在Windows XP下安装完MySQL后,它就已经自动启动服务了,并且在开始菜单中有其客户端的快捷方式连接:mysql command line client。

  可以通过Windows的服务管理器查看MySQL服务是否启动:

  “开始”-“运行”,输入“services.msc”,回车。弹出Windows的服务管理器,找到服务名为“mysql”的服务项,查看其状态是否启动。

  如果不是“已启动”状态,说明MySQL服务未启动,不能连接,会出现10061错误。

  启动mysql服务方法为:

  “开始”-“运行”,输入“cmd”,回车弹出XP命令提示符界面(类似DOS命令行,以后简称命令行),输入“net start mysql”即可启动mysql服务,如要停止mysql服务输入“net stop mysql”(注意,这里是输入的MySQL服务的名字。如果你的MySQL服务的名字是DB或其它名字,你应该输入“net start DB”或其它名)。

  二、连接MySQL服务器。

  1、连接MySQL的命令格式为:
  mysql -h 主机名 -u 用户名 -p用户密码(注意,-p与用户密码要连在一起),如:
  mysql -h localhost -u root -p123456

  在命令行中输入以上命令,回车,如果出现:
  Welcome to the MySQL monitor. Commands end with ; or g.
  Your MySQL connection id is 1 to server version: 5.0.26-community-nt

  Type 'help;' or 'h' for help. Type 'c' to clear the buffer.

  mysql>

  这就说明连接MySQL成功,“mysql>”说明已经成功联入MySQL服务器了,可以开始msql的操作了。

  “-h 主机名”还可以写成:“-h主机名”(中间不要空格)、“--host=主机名”
  “-u 用户名”还可以写成:“-u用户名”、“--user=用户名”
  “-p 用户密码”还可以写成:“--password=用户密码”。但是,出于安全的考虑,最好不要这样做。选择-p 不跟口令告诉mysql在启动时提

  示您键入口令。例如:
  mysql>mysql -hlocalhost -uroot -p
  回车后会提示你“Enter password:”

  2、在开始菜单中找到客户端的快捷方式连接:mysql command line client,点击它,出现“Enter password:”提示,输入密码,马上就能连接上MySQL服务器

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