deepin安裝mysql密碼問題解決方案
1.安裝mysql
更新倉庫:sudo apt-get update
安裝:sudo apt-get install mysql-server mysql-client
問題:安裝mysql5.7的過程中 無root密碼設定提示 直接安裝完成結束
2.不知道密碼狀態下開啟mysql
查詢mysql是否執行:sudo netstat -tap |grep mysql
(有顯示就表示已執行)
備註:mysql 開啟(service mysql start) 關閉(service mysql stop) 重啟命令(service mysql restart)
查詢預設的使用者名稱和密碼:sudo cat /etc/mysql/debian.cnf
baiguo@baiguo-pc:~$ sudo cat /etc/mysql/debian.cnf
# automatically generated for debian scripts. do not touch!
[client]
host = localhost
user = debian-sys-maint
password = f64nkz233qkzl8v9
socket = /var/run/mysqld/mysqld.sock
[mysql_upgrade]
host = localhost
user = debian-sys-maint
password = f64nkz233qkzl8v9
socket = /var/run/mysqld/mysqld.sock
備註:這樣比較麻煩,無法複製密碼,可以直接開啟你的檔案管理器,用管理員身份開啟debian.cnf即可檢視複製密碼
利用預設賬戶進行登入:mysql -u debian-sys-maint -p(檔案中的密碼,與p之間不要有空格)
3.進入mysql修該密碼
這句必須:update mysql.user set plugin=「mysql_native_password」 where user=「root」;
設定root賬戶密碼:update mysql.user set authentication_string=password(『這裡是你的密碼』) where user='root』and host = 『localhost』;
4.退出資料庫
exit
重新啟動資料庫
sudo service mysql restart
用自己設定好的密碼登入
mysql -u root -p
輸入密碼,成功登入,如下.
baiguo@baiguo-pc:~$ mysql -u root -p
enter password:
welcome to the mysql monitor. commands end with ; or \g.
your mysql connection id is 4
server version: 5.7.21-1 (debian)
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>
同學 你成功了!
deepin安裝MySQL並設定密碼
前言 我的deepin是換了源的,換的aliyun的 安裝mysql sudo apt get install y mysql server mysql client輸入命令後應該會出現輸入密碼 輸入密碼後就會進入安裝 安裝完成後還沒有結束,如果你直接用命令開啟mysql的話,它會讓你輸入密碼,然而...
deepin系統安裝mysql
鏈結 輸入命令 如果安裝時提供缺少依賴,就按照提示命令進行操作 也可以使用 sudo apt get install f 處理依賴問題,不過大部分時候是沒問題的,除非你在安裝之前人為的刪除了某些庫 安裝好之後不報錯就更新一下 sudo apt get update 完成後輸入 sudo apt ge...
mysql在deepin中初次設定密碼
在deepin中安裝完mysql,一路下來沒有設定密碼,莫慌莫慌 首選開啟debian檔案sudo cat etc mysql debian.cnf mysql u user欄位內容 p mysql u userdebian sys maint p密碼 現在已近進入到mysql中,然後進入mysql...