資訊內(nèi)容
mysql的ini文件在哪?
MaG少兒編程網(wǎng)-Scratch_Python_教程_免費兒童編程學習平臺
win下的my.ini文件,一般會在安裝目錄的根目錄。MaG少兒編程網(wǎng)-Scratch_Python_教程_免費兒童編程學習平臺
查看mysql的ini文件的方法:
MaG少兒編程網(wǎng)-Scratch_Python_教程_免費兒童編程學習平臺
1、使用下面的命令查看MaG少兒編程網(wǎng)-Scratch_Python_教程_免費兒童編程學習平臺
show variables like "%char%";C:Users78204>mysql Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 3 Server version: 5.7.25 MySQL Community Server (GPL) Copyright (c) 2000, 2019, 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> show variables like "%char%"; +--------------------------+----------------------------------------+ | Variable_name | Value | +--------------------------+----------------------------------------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | utf8 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | utf8 | | character_set_system | utf8 | | character_sets_dir | D:mysql-5.7.25-winx64sharecharsets | +--------------------------+----------------------------------------+ rows in set, 1 warning (0.01 sec) mysql>2、在“開始 → 所有程序 → MySQL”下面找到MySQL的命令行客戶端工具,右鍵選擇該命令行工具查看“屬性”,在“目標”里面也可以看到MySQL使用的配置文件位置。MaG少兒編程網(wǎng)-Scratch_Python_教程_免費兒童編程學習平臺
MaG少兒編程網(wǎng)-Scratch_Python_教程_免費兒童編程學習平臺
推薦:MySQL教程MaG少兒編程網(wǎng)-Scratch_Python_教程_免費兒童編程學習平臺
- 上一篇
python如何關(guān)閉文件?
簡介python關(guān)閉文件的方法:python中可以使用close()方法關(guān)閉打開的文件,close()方法用于關(guān)閉一個已打開的文件。關(guān)閉后的文件不能再進行讀寫操作,否則會觸發(fā) ValueError 錯誤。close()方法語法如下:fileObject.close();使用示例:#!
- 下一篇
怎么關(guān)閉mongodb端口號
簡介關(guān)閉mongodb端口的方法:1、使用ps-ef|grepmongo命令查看mongo相關(guān)進程 [mongo@redhatB data]$ ps -ef | grep mongoroot &nbs
