ubuntu自帶了mysql,使用apt-get安裝即可
sudo apt-get install mysql-server
sudo apt-get install mysql-client
用以下命令檢查MySQL是否執行:
sudo netstat -tap | grep mysql
我這裡顯示
tcp 0 0 localhost:mysql 0.0.0.0:* LISTEN 6204/mysqld
說明安裝成功。
安裝完畢以後,用以下命令登入
mysql -u root -p
會提示
ERROR 1698 (28000): Access denied for user 'root'@'localhost'
此時,開啟/etc/mysql/debian.cnf檔案,注意,不是mysql.cnf
sudo vim debian.cnf
預設的user是debian-sys-maint,maint的意思是維修、保養,mysql預設建立了一個運維角色。
password 項後面的複雜字串,可能是個加密串,直接修改成其它密碼無效,所以,老老實實地用原來的,不過可以複製以後貼上到需要輸入密碼的地方。
mysql -u debian-sys-maint -pwg
登入成功以後,設定root的密碼,如果你用這種方式不成功:
update mysql.user set authentication_string=password('666666') where user='root'and Host = 'localhost';
那就試試下面這種(來自:https://www.cnblogs.com/leolztang/p/5094930.html)
update mysql.user set authentication_string=PASSWORD('666666'), plugin='mysql_native_password' where user='root';
我用第二種方法設定成功。
至此,ubuntu下的mysql安裝完成。