因本为的学习使用,采用apt-get的方式安装。
1.下载与安装
sudo apt-getinstallmysql-servermysql-client
2.密码的设置:此处不像win下安装,有默认的账户:root与密码:root。要使用系统的root权限查看本地生成的自动生成的密码与账户。
a.查看密码与账户(一定要加上sudo)
sudo cat /etc/mysql/debian.cnf
如下图,user为用户名,password为密码:
b.登录,注册-p与密码之间最好不要用空格。
mysql -u 用户名 -p密码
c.查看本用户的配置
-----输入 use mysql; (ps:使用相应的数据库)。
----查看配置 selecthost,user,plugin,authentication_stringfromuser;
-----更新密码: update usersetplugin="mysql_native_password",authentication_string=password('新密码') where user="root;
d.刷新本地的配置:FLUSH PRIVILEGES; 重要的事情说三遍:刷新本地的配置,刷新本地的配置,刷新本地的配置。
3.查看mysql占用的端口:show global variables like 'port';
参考自:https://blog.csdn.net/sinat_37064286/article/details/82224562