mysql 错误 2003 (hy000) 无法连接到本地主机上的 MYSQl 服务器
我试图连接到 mysql 并不断收到此错误:
mysql错误2003(hy000)无法连接到本地主机上的MYSQl服务器(10061)
我尝试输入:sc query mysql到命令提示符命令行并得到:
SERVICE_NAME: mysql
TYPE : 10 WIN32_OWN_PROCESS
STATE : 1 STOPPED
WIN32_EXIT_CODE : 1077 (0x435)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
I am trying to connect to mysql and keep getting this error:
mysql error 2003 (hy000) cant connect to MYSQl server on localhost (10061)
I tried typing in: sc query mysql to command prompt command line and got:
SERVICE_NAME: mysql
TYPE : 10 WIN32_OWN_PROCESS
STATE : 1 STOPPED
WIN32_EXIT_CODE : 1077 (0x435)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MySQL 服务未运行。输入
sc start mysql
来启动它。The MySQL service is not running. Type
sc start mysql
to start it.您可以尝试此操作 -
转到开始 ->服务.msc ->启动 mysql 服务(名称可以是 MYSQL57)
转到 MySQL 目录中的 bin 文件夹(例如 C:\Program Files\MySQL 5.7\bin)->右键单击 mysqld.exe ->以管理员身份运行
在 MySQL 目录的 bin 文件夹中打开 cmd ->执行这个命令'mysql -u root -p
->输入密码
就大功告成了!!!
You can try this -
Go to Start -> Services.msc -> start mysql service (name could be MYSQL57)
Go to your bin folder in MySQL directory (eg C:\Program Files\MySQL 5.7\bin) -> right click on mysqld.exe -> Run as Administrator
Open cmd in your bin folder in MySQL directory -> execute this command 'mysql -u root -p
-> Enter the password
And you are done!!!