Windows SQLYog连接不上VMbox Ubuntu2204 的Mysql解决方法

Windows SQLYog连接不上VMbox Ubuntu2204 的Mysql解决方法

解决方法:

1、先检查以下mysql的端口状态

bash 复制代码
netstat -anp|grep mysql


如果显示127.0.0.1:3306 则说明需要修改,若为: : :3306,则不用。

在**/etc/mysql/mysql.conf.d/mysqld.cnf**,找到下面这部分,然后注释掉即可。

Instead of skip-networking the default is now to listen only on

localhost which is more compatible and is not less secure.

bind-address = 127.0.0.1

bash 复制代码
#

# The MySQL database server configuration file.

#

# One can use all long options that the program supports.

# Run program with --help to get a list of available options and with

# --print-defaults to see which it would actually understand and use.

#

# For explanations see

# http://dev.mysql.com/doc/mysql/en/server-system-variables.html



# Here is entries for some specific programs

# The following values assume you have at least 32M ram



[mysqld]

#

# * Basic Settings

#

user		= mysql

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

# socket	= /var/run/mysqld/mysqld.sock

# port		= 3306

# datadir	= /var/lib/mysql





# If MySQL is running as a replication slave, this should be

# changed. Ref https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_tmpdir

# tmpdir		= /tmp

#

# Instead of skip-networking the default is now to listen only on

# localhost which is more compatible and is not less secure.

#bind-address		= 127.0.0.1

mysqlx-bind-address	= 127.0.0.1

#

# * Fine Tuning

#

key_buffer_size		= 16M

# max_allowed_packet	= 64M

# thread_stack		= 256K



# thread_cache_size       = -1



# This replaces the startup script and checks MyISAM tables if needed

# the first time they are touched

myisam-recover-options  = BACKUP



# max_connections        = 151



# table_open_cache       = 4000



#

# * Logging and Replication

#

# Both location gets rotated by the cronjob.

#

# Log all queries

# Be aware that this log type is a performance killer.

# general_log_file        = /var/log/mysql/query.log

# general_log             = 1

#

# Error log - should be very few entries.

#

log_error = /var/log/mysql/error.log

#

# Here you can see queries with especially long duration

# slow_query_log		= 1

# slow_query_log_file	= /var/log/mysql/mysql-slow.log

# long_query_time = 2

# log-queries-not-using-indexes

#

# The following can be used as easy to replay backup logs or for replication.

# note: if you are setting up a replication slave, see README.Debian about

#       other settings you may need to change.

# server-id		= 1

# log_bin			= /var/log/mysql/mysql-bin.log

# binlog_expire_logs_seconds	= 2592000

max_binlog_size   = 100M

# binlog_do_db		= include_database_name

# binlog_ignore_db	= include_database_name
相关推荐
摆烂工程师3 小时前
(5千字总结)国内如何安装和使用 Claude Code 的保姆级教程 - 支持Mac和Windows用户
windows·macos·claude
眠りたいです4 小时前
Mysql常用内置函数,复合查询及内外连接
linux·数据库·c++·mysql
M1A15 小时前
Java 面试系列第一弹:基础问题大盘点
java·后端·mysql
He.ZaoCha5 小时前
函数-1-字符串函数
数据库·sql·mysql
叁沐5 小时前
MySQL 09 普通索引和唯一索引,应该怎么选择?
mysql
草履虫建模7 小时前
Redis:高性能内存数据库与缓存利器
java·数据库·spring boot·redis·分布式·mysql·缓存
苹果醋37 小时前
Vue3组合式API应用:状态共享与逻辑复用最佳实践
java·运维·spring boot·mysql·nginx
一个处女座的测试7 小时前
Python语言+pytest框架+allure报告+log日志+yaml文件+mysql断言实现接口自动化框架
python·mysql·pytest
KIDAKN8 小时前
MySQL 存储结构
数据库·mysql
Code季风8 小时前
SQL关键字快速入门:HAVING 分组后的条件过滤
数据库·sql·mysql