安裝Mysql總是遇到很多的問題
一呻率、安裝包:
安裝包:直接官網(wǎng)下載(https://dev.mysql.com/downloads/windows/installer/),由于之前安裝免安裝壓縮包版本京闰,總是出現(xiàn)各種問題,所以甩苛,直接重新下載了一個(gè)Mysql install 安裝版本
相關(guān)網(wǎng)址:https://www.cnblogs.com/chengxs/p/5986095.html
二蹂楣、修改密碼:
我去網(wǎng)上看他們說的找到my.ini(這個(gè)一個(gè)Mysql的配置文件),可我總是怎么找都找不到讯蒲,于是我就按照網(wǎng)上說的去設(shè)置顯示隱藏文件痊土,結(jié)果還是看不到my.ini ,于是再去網(wǎng)上找,網(wǎng)上好多個(gè)版本墨林,基本都是沒有用的赁酝。
原來,要找到my.ini旭等,要先去找到ProgramData,(這里要先打開顯示隱藏文件的設(shè)置):
1酌呆、編輯點(diǎn)開my.ini文件 ,這是讓Mysql 不用密碼就能登入
.2搔耕、先停用此服務(wù):
3肪笋、執(zhí)行命令 mysqld --skip-grant-tables
1)、遇到如下錯(cuò)誤:
mysqld: Can't change dir to '\Program Files\MySQL\MySQL Server 8.0\data'
2)度迂、解決辦法:
a、由于mysqld –skip-grant-tables實(shí)測在mysql8.0中已失效猜揪,現(xiàn)使用mysqld --console --skip-grant-tables --shared-memory
b惭墓、此外,由于my.ini文件和mysqld文件不在同一個(gè)文件夾內(nèi)而姐,需要指定my.ini文件的位置腊凶,通過--defaults-file="C:\ProgramData\MySQL\MySQL Server 8.0\my.ini"
故,命令如下:
mysqld --defaults-file="C:\ProgramData\MySQL\MySQL Server 8.0\my.ini" --console --skip-grant-tables --shared-memory
4拴念、另外開一個(gè)cmd钧萍,使用 mysql -u root -p
不用管password,直接回車
5政鼠、修改root密碼
首先风瘦,采用命令:
update user set authentication_string=password("123456") where user="root";
出現(xiàn)以下錯(cuò)誤:
mysql> update user set authentication_string=password("123456") where user="root";
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '("123456") where user="root"' at line 1
mysql>
因此,換一種方式公般,采用如下命令:
mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';
Query OK, 0 rows affected (0.13 sec)
可能會(huì)出現(xiàn)錯(cuò)誤:The MySQL server is running with the –skip-grant-tables option so it cannot execute this statement(本人執(zhí)行時(shí)遇到過万搔,所以記錄下來)胡桨,沒關(guān)系,刷新權(quán)限瞬雹,重新執(zhí)行以上命令即可昧谊。
6、刷新權(quán)限酗捌,命令如下:
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
退出呢诬,重新登錄
mysql>exit;