Linux安裝mysql5 7 23設定密碼問題

2021-08-27 03:14:36 字數 555 閱讀 3303

問題:安裝mysql沒有設定密碼導致無法進入mysql

系統:ubuntu 18.04

sudo vim /etc/mysql/debian.cnf  //檢視mysql預設賬號密碼

mysql -udebian-sys-maint -p//進入資料庫

mysql>use mysql;

//mysql資料庫中的user表中的password欄位為authentication_string

mysql>update user set authentication_string=password("自定義密碼") where user='root';

mysql>update user set plugin="mysql_native_password";

mysql>flush privileges;

mysql>quit

/etc/init.d/mysql restart  //重啟mysql服務

mysql -u root -p 自定義密碼  //進入mysql

windows系統下安裝MySQL5 7 25

mysqld 設定3306埠 port 3306 設定mysql的安裝目錄 basedir d mytools mysql 5.7.25 winx64 設定mysql資料庫的資料的存放目錄 datadir d mytools mysql 5.7.25 winx64 data 允許最大連線數 max ...

MySQL資料庫安裝Version5 7 25

mysql資料庫大版本5.7的安裝沒有較大變化,所以mysql資料庫version5.7.25安裝請參考 mysql資料庫安裝version5.7 上面文章中mysql安裝使用version5.7.22,version5.7.25安裝請參考上面文章,並且結合參考下面的步驟,指出了version5.7...

mysql中文亂碼解決 5 7 2

1 資料庫亂碼如下 初始安裝mysql後,character set server 值是latin1.導致存入資料庫的中文顯示?亂碼。解決方法就是修改my.ini檔案 如下 mysqld 下加以下配置 server type 3 mysqld the next three options are m...