Mysql應用安裝後找不到my.ini文件的解決過程

一、背景

我在兩臺電腦上安裝瞭MySQL Server 8.0,準備繼續做主從配置,這時候就需要用到my.ini文件進行配置,但是我找不到my.ini文件。

我的安裝目錄中沒有my.ini文件。(這裡我的mysql安裝目錄為C:\Program Files\MySQL\MySQL Server 8.0)。

那麼我們就需要重新配置一下。

二、刪除原有的mysql服務

因為我的mysql已經用瞭一段時間,我這裡就刪除服務重新配置。

刪除方法。

進入mysql安裝的bin目錄。在路徑欄輸入cmd命令,即可進入命令提示符。

查看我們mysql服務的名字。(可以看到這裡我們的服務名字是MySQLD514,服務名是自定義的,每個人的情況可能不一樣,要自己插。)

命令如下:

# 刪除已安裝的mysql服務
sc delete MySQLD514

三、初始化mysql

# 初始化mysql
mysqld --initialize-insecure --user=mysql

四、自行添加my.ini文件

在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服務

輸入命令 ,意思是創建一個名字為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服務項。 

六、啟動mysql服務

可以在服務中直接啟動,也可以在cmd中命令啟動。命令為:

net start MySql

七、設置數據庫密碼

7.1 登錄mysql數據庫

在bin目錄啟動cmd。輸入下命令。

mysql -u root -p

這時密碼為空,不需要填寫,直接回車:

7.2 修改root用戶密碼

設置root用戶密碼為123456

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456';

 設置退出,再次登錄,即可。

總結

到此這篇關於Mysql應用安裝後找不到my.ini文件的文章就介紹到這瞭,更多相關Mysql找不到my.ini文件內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: