首先在終端中檢視mysql的依賴項:dpkg --list|grep mysql解除安裝:apt-get remove mysql-common
解除安裝:apt-get autoremove --purge mysql-server-5.7
清除殘留資料:dpkg -l|grep ^rc|awk 『』|sudo xargs dpkg -p
再次檢視mysql的剩餘依賴項:dpkg --list|grep mysql
繼續刪除剩餘依賴項,如:sudo apt-get autoremove --purge mysql-apt-config
apt install mysql-service
ubantu 安裝mysql 第一次使用root登陸是不需要密碼的mysql -uroot -p
use mysql ;
檢視user表 select host , user , authentication , plugin from user ;
修改root使用者密碼 : update user set authentication_string=password(『duyu4116』), plugin=『mysql_native_password』 where user=『root』
這個不好用的話:
第一步:開啟root使用者其他ip位址登陸 update mysql.user set host = 『%』 where user =『root』 limit 1;第二步:允許其他ip位址連線mysql vim /etc/mysql/mysql.conf.d/mysqld.cnf 注釋掉 bind-address = 127.0.0.1
flush privileges ; (進入mysql)重啟mysql service mysql restart
virtualbox安裝ubantu系統
背景介紹 在windows上無法直接使用linux系統,雙系統雖然可裝,但使用不便,在windows上通過虛擬 virtualbox執行linux系統,完美解決了次問題。0 安裝前準備 1 virtualbox安裝包 提取碼 4men 有效期永久 2 ubantu18.0映象 1 雙擊virtual...
linux系統ubantu下mysql報錯
2.error 2002 hy000 can t connect to local mysql server through socket var run mysqld mysqld.sock 3.error 1045 28000 access denied for user root localh...
Ubantu系統Docker離線安裝及遇到問題解決
將三個包放到linux的某個資料夾下 安裝libltdl7 sudo apt get install libltdl7按順序安裝三個包,注意順序不能錯 1.sudo dpkg i docker ce cli 18.09.0 3 0 ubuntu bionic amd64.deb 2.sudo dpk...