但是至少要安装客户端。
再至少, 也要安装一个 ODBC 的驱动。
否则 总不能什么驱动没有, 然后用 Access 连接 MySQL 吧?
前提是 本机安装了 MySQL , 并开启了 MySQL 的服务。
E:\MySQL\MySQL Server 5.1\bin>mysql -u root -p
Enter password: ********
Welcome to the MySQL monitor. Commands end with or \g.
Your MySQL connection id is 4
Server version: 5.1.50-community MySQL Community Server (GPL)
Copyright (c) 2000, 2010, Oracle and/or its affiliates. All rights reserved.
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL v2 license
Type 'help' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
下面这种情况, 是 本机只有客户端, 没有运行服务程序。
连接的是 另外一台机器上面的 MYSQL 数据库, 本机是没有数据库的。
F:\mysql-4.1.10a-win32\bin>mysql -u test_user -h 192.168.56.101 -p
Enter password: ************
Welcome to the MySQL monitor. Commands end with or \g.
Your MySQL connection id is 8 to server version: 5.0.96-community-nt
Type 'help' or '\h' for help. Type '\c' to clear the buffer.
mysql>
在剖析服务器性能的过程中,慢查询是一个很好的工具。
我们可以通过设置slow_query_log来开启慢查询日志,long_query_time属性来设置慢查询定义阈值,设置slow_query_log_file来定义慢查询日志的存储文件。
当前环境是windows10,Mysql8.0.15版本。
show global variables like 'slow_query%'
show global variables like 'long_query%'
set global slow_query_log_file='F:ATempslowly.log'
set global long_query_time=2,单位为秒,可以通过设置long_query_time为0 来捕获所有的查询。
select sleep(3);
生成的日志:
C:Program FilesMySQLMySQL Server 8.0binmysqld.exe, Version: 8.0.15 (MySQL Community Server - GPL). started with:
TCP Port: 3306, Named Pipe: MySQL
Time Id Command Argument
# Time: 2021-05-19T14:38:24.960151Z
# User@Host: root[root] @ localhost [::1] Id: 14
# Query_time: 3.000456 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0
use env
SET timestamp=1621435101
select sleep(3)
LIMIT 0, 1000
包含的信息包括执行查询的用户,查询的语句以及发起时间等。
正在学习,如果有误或不足,请指出交流。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)