程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> [Mysql]mysqlwindows下配置文件

[Mysql]mysqlwindows下配置文件

編輯:MySQL綜合教程

[Mysql]mysqlwindows下配置文件


環境是win7 mysql5.6版本

測試下配置文件是否可用(之前沒用過windows下的msyql配置)

修改配置前查詢下:
mysql> show variables like '%max_connections%';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 100   |
+-----------------+-------+
1 row in set

修改配置文件 [mysqld] max_connections=50
重新啟動mysql,如果net 命令可以用 net stop mysql net start mysql 就可以了,我這裡不能用,就直接重啟服務了。
重啟後查看
mysql> show variables like '%max_connections%';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 100   |
+-----------------+-------+
1 row in set

好像沒有成功,網上還有說放在c:\WINDOWS下,測試還沒成功,還是直接看下官網的配置吧,百度下果然不太行。
On Windows, MySQL Installer interacts with the user and creates a file named my.ini in the base installation directory as the default option file. If you install on Windows from a Zip archive, you can copy the my-default.ini template file in the base installation directory to my.ini and use the latter as the default option file.

從這段說明來看是放在安裝目錄下啊。。到底怎麼回事呢 然後我又去查看了msyql相關的所有目錄,看到有個mysqldata目錄,裡面有個my.ini 然後我修改了裡面connections的值為50 ,結果生效了。
看來還是要好好閱讀官方文檔才是,不同的安裝方式不同的版本會有些差異,不能照抄別人解決方法啊。
‘總結下,一共有這幾個位置 c:\WINDOWS
安裝目錄下 data目錄下
data目錄查找方法
</pre><pre name="code" class="python">mysql> show variables like '%datadir%';
+---------------+-----------------------------+
| Variable_name | Value                       |
+---------------+-----------------------------+
| datadir       | D:\devsofts\mysqldata\data\ |
+---------------+-----------------------------+
1 row in set

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved