deepin下mysql的安裝配置

2021-09-27 12:11:58 字數 566 閱讀 2098

進入終端輸入:

sudo apt-get install -y mysql-server mysql-client
在終端中輸入如下指令:

sudo mysql -uroot -p
進入資料庫後依次輸入如下密碼:

update mysql.user set plugin="mysql_native_password" where user="root";

grant all on *.* to root@"localhost";

update mysql.user set authentication_string=password('這裡是你的密碼') where user='root'and host = 'localhost';

flush privileges;

執行完畢後可以直接 \q 退出資料庫

接下來輸入:

mysql -uroot -p
輸入密碼後可以成功進入資料庫

到這裡安裝成功

deepin系統安裝mysql

鏈結 輸入命令 如果安裝時提供缺少依賴,就按照提示命令進行操作 也可以使用 sudo apt get install f 處理依賴問題,不過大部分時候是沒問題的,除非你在安裝之前人為的刪除了某些庫 安裝好之後不報錯就更新一下 sudo apt get update 完成後輸入 sudo apt ge...

安裝deepin15 10下的openjdk 8

在deepin15.10下安裝 插入乙個鏈結 用開啟檔案 etc apt sources.list deb bionic main restricted universe deb bionic security main restricted universe deb bionic updates ...

deepin下安裝QT開發環境

安裝 2 改變二進位制安裝包檔案屬性為所有使用者可讀可寫可執行 sudo chmod 550 qt opensource linux x64 5.8.0.run 3 用root許可權安裝二進位制安裝包 sudo qt opensource linux x64 5.8.0.run 4 用root許可權...