溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

deepin v20怎么安裝mysql

發(fā)布時(shí)間:2021-07-08 09:58:29 來(lái)源:億速云 閱讀:222 作者:小新 欄目:MySQL數(shù)據(jù)庫(kù)

這篇文章主要介紹deepin v20怎么安裝mysql,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

deepin v20不能直接安裝mysql所以先進(jìn)行換源,更換成阿里源,這樣以后速度可以更快,今天我們就來(lái)介紹一下deepin v20安裝mysql的方法,有需要的可以參考一下。

deepin v20 換源和安裝mysql

由于deepin v20不能直接安裝mysql所以先進(jìn)行換源,更換成阿里源,這樣以后速度可以更快

修改文件 sudo vim /etc/apt/sources.list

#刪除內(nèi)容,并添加以下內(nèi)容:
## Generated by deepin-installer
deb [by-hash=force] https://mirrors.aliyun.com/deepin/ panda main contrib non-free

執(zhí)行sudo apt-get update

執(zhí)行sudo apt-get upgrade命令。

安裝mysql

1.執(zhí)行安裝mysql的語(yǔ)句

sudo apt-get install mysql-server mysql-client

2.查看可登陸賬戶并查看密碼

deepin v20怎么安裝mysql

3.獲取到了登陸mysql的賬戶密碼

lin@lin-PC:~$ mysql -udebian-sys-maint -pjSaNFiRzjlDAxiRN
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.21-1 (Debian)

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

4.之后依次進(jìn)入mysql數(shù)據(jù)庫(kù),修改root密碼,刷新緩存。之后就可以exit退出使用root賬戶登錄了:

use mysql;
update user set plugin="mysql_native_password",authentication_string=password('新密碼') where user="root";
FLUSH PRIVILEGES;

5.使用修改后的帳號(hào)密碼登陸

mysql -uroot -p000000

以上是“deepin v20怎么安裝mysql”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI