mysql客户端“.my.cnf"的位置是什么?在 Windows 的 XAMPP 中?

What is the location of mysql client quot;.my.cnfquot; in XAMPP for Windows?(mysql客户端“.my.cnf的位置是什么?在 Windows 的 XAMPP 中?)
本文介绍了mysql客户端“.my.cnf"的位置是什么?在 Windows 的 XAMPP 中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Windows中使用XAMPP的mysql客户端.my.cnf在什么位置?

What is the location of mysql client .my.cnf using XAMPP in Windows?

澄清:这个文件默认是不存在的,所以在创建的时候应该放在哪里,以便命令行客户端自动读取?

Clarification: This file does not exist by default, so when you create it, where should you place it, in order for the command line client to read it automatically?

推荐答案

键入:

mysql --help 

然后看看输出.有一段大约 3/4 的文本描述了它从哪些文件中找到了默认的 .my.cnf.这是 XAMPP v3.2.1 中的一个示例:

Then look at the output. There is a block of text about 3/4 the way down describing what files it finds its defaults .my.cnf from. Here is an example from XAMPP v3.2.1:

Default options are read from the following files in the given order:
C:Windowsmy.ini C:Windowsmy.cnf C:my.ini C:my.cnf C:xamppmysqlmy.ini C:xamppmysqlmy.cnf C:xamppmysqlinmy.ini C:xamppmysqlinmy.cnf

您的设置可能不同.您必须运行该命令来检查特定系统上的实际路径.

Your setup may differ. You will have to run the command to check the actual paths on your particular system.

这篇关于mysql客户端“.my.cnf"的位置是什么?在 Windows 的 XAMPP 中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)