我在兩台電腦上安裝了MySQL Server 8.0,準備繼續做主從配置,這時候就需要用到my. ini檔案進行配置,但是我找不到my.ini檔案。
我的安裝目錄中沒有my.ini檔案。 (這裡我的mysql安裝目錄為C:\Program Files\MySQL\MySQL Server 8.0)。
那我們就需要重新設定一下。
因為我的mysql已經用了一段時間,我在這裡就刪除服務重新配置。
刪除方法。
進入mysql安裝的bin目錄。在路徑列輸入cmd命令,即可進入命令提示字元。
看看我們mysql服務的名字。我們的服務名稱是MySQLD514,這個名稱是我們自訂的,每個人的情況可能不同,需要自己插入對應的名稱。 )
指令如下:
# 删除已安装的mysql服务 sc delete MySQLD514
# 初始化mysql mysqld --initialize-insecure --user=mysql
在bin資料夾同級目錄,新建my.ini檔案。
將下面腳本複製到 my.ini檔案
# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [client] default-character-set = utf8mb4 [mysql] default-character-set = utf8mb4 [mysqld] character-set-client-handshake = FALSE character-set-server = utf8mb4 collation-server = utf8mb4_bin init_connect='SET NAMES utf8mb4' # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. innodb_buffer_pool_size = 128M # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # These are commonly set, remove the # and set as required. basedir = D:\MySQL datadir = D:\MySQL\data port = 3306 server_id = 1 # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. join_buffer_size = 128M sort_buffer_size = 16M read_rnd_buffer_size = 16M sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
輸入指令 ,意思是建立一個名字為MySql的服務,相關設定檔為C:\Program Files\MySQL\MySQL Server 8.0\my.ini
# 创建mysql服务 mysqld --install "MySql" --defaults-file="C:\Program Files\MySQL\MySQL Server 8.0\my.ini"
再次開啟服務,即可看到我們的MySql服務項。
可以在服務中直接啟動,也可以在cmd中指令啟動。指令為:
net start MySql
在bin目錄啟動cmd。輸入下命令。
mysql -u root -p
這時密碼為空,不需要填寫,直接回車:
設定root用戶密碼為123456
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';
設定退出,再次登錄,即可。
以上是Mysql應用程式安裝後找不到my.ini檔案如何解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!