Ubuntu 18.04.1 LTS 安装mysql命令
apt install mysql-server
安装完毕后,在命令行输入mysql,即可登陆数据库控制台
默认使用数据库的root账号登陆了
如果期望设定root账号的密码,可以先执行查询
select Host,User,authentication_string from mysql.user limit 10;
可以看到root用户未设定密码
按顺序执行下列命令
update mysql.user set authentication_string=password(‘88884444′) where user=’root’ and Host =’localhost’;
update user set plugin=”mysql_native_password”;
flush privileges;
即可将密码修改为88884444
下次登陆数据库时,使用命令
mysql -hlocalhost -uroot -p
然后数据密码88884444即可登陆