您好,登錄后才能下訂單哦!
這篇文章主要介紹“Mysql應用安裝后找不到my.ini文件如何解決”,在日常操作中,相信很多人在Mysql應用安裝后找不到my.ini文件如何解決問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Mysql應用安裝后找不到my.ini文件如何解決”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
我在兩臺電腦上安裝了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文件如何解決”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。