mysql打开显示未连接不上_mysql服务打开却连接不上2种处理办法

软件安装:装机软件必备包

SQL是Structured Query Language(结构化查询语言)的缩写。SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言。在使用它时,只需要发出“做什么”的命令,“怎么做”是不用使用者考虑的。SQL功能强大、简单易学、使用方便,已经成为了数据库操作的基础,并且现在几乎所有的数据库均支持SQL。这篇文章主要为大家详细介绍了mysql服务启动却连接不上的解决方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

mysql服务启动,但是连接不上,如何解决?

登陆报错:

root@localhost:~# mysql -u root -p

Enter password:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

root@localhost:~# service mysqld restart

Shutting down MySQL.. [ OK ]

Starting MySQL. [ OK ]

root@localhost:~# mysql -u root -p

Enter password:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

分析原因:

原因不详,知道了补上

解决方案一:

root@localhost:~# find / -name mysql.sock

/tmp/mysql.sock

root@localhost:~# mysql -u root -p -S /tmp/mysql.sock

Enter password:

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 1

Server version: 5.6.15-log Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

解决方案二:

root@localhost:~# find / -name mysql.sock

/tmp/mysql.sock

root@localhost:~# vi /etc/my.cnf

[mysqld]

datadir=/var/lib/mysql

socket=/var/lib/mysql/mysql.sock

user=mysql

# Default to using old password format for compatibility with mysql 3.x

# clients (those using the mysqlclient10 compatibility package).

old_passwords=1

# Disabling symbolic-links is recommended to prevent assorted security risks;

# to do so, uncomment this line:

# symbolic-links=0

# 加上下面的这段代码即可

[mysql]

socket=/tmp/mysql.sock

[mysqld_safe]

log-error=/var/log/mysqld.log

pid-file=/var/run/mysqld/mysqld.pid

root@localhost:~# mysql -u root -p

Enter password:

Welcome to the MySQL monitor. Commands end with ; or \g.

Your MySQL connection id is 3

Server version: 5.6.15-log Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

如果您的 Mac 无法远程连接 MySQL,可以尝试以下步骤来解决问题: 1. 确认 MySQL 服务器正在运行,并且已经打开了远程连接功能。您可以通过在终端中输入以下命令来检查 MySQL 是否正在运行: ``` sudo /usr/local/mysql/support-files/mysql.server status ``` 如果 MySQL 没有运行,请使用以下命令启动 MySQL: ``` sudo /usr/local/mysql/support-files/mysql.server start ``` 2. 检查 MySQL 的防火墙设置。如果您的 Mac 上启用了防火墙,请确保 MySQL 的端口(默认为3306)已经打开。您可以通过在终端中输入以下命令来检查防火墙设置: ``` sudo /usr/libexec/ApplicationFirewall/socketfilterfw --list ``` 如果您需要打开 MySQL 的端口,请使用以下命令: ``` sudo /usr/libexec/ApplicationFirewall/socketfilterfw --add /usr/local/mysql/bin/mysqld ``` 3. 确认您的 MySQL 用户名和密码正确。如果您使用的是 root 用户,请确保已经启用了 root 用户的远程访问权限。您可以在 MySQL 中使用以下命令启用远程访问权限: ``` GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'your_password' WITH GRANT OPTION; ``` 4. 检查您的网络连接。如果您的 Mac 无法连接到 Internet,或者您的网络设置有问题,可能会导致无法远程连接 MySQL。请确保您的网络连接正常,并且您的网络设置正确。 希望以上步骤能够帮助您解决问题。如果仍然无法解决,请提供更多详细信息,以便我们更好地帮助您。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值