ubuntu16.04 安装mysql5.7

依赖安装:

sudo apt-get install libaio1 

安装:

sudo apt-get install mysql


问题1:

Sub-process /usr/bin/dpkg returned an error code (1) Ubantu dpkg安装mysql-server-5.5软件包时报错解决办法:

来自:http://blog.csdn.net/dongwuming/article/details/9835983

$cd /var/lib/dpkg/info

$sudo rm -rf mysql*

$sudo apt-get -f install

$sudo apt-get  update

问题2:

远程连接问题:1130 -host 'localhost' is not allowed to connect to this mysql server

解决方法:

可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在localhost的那台电脑,登入mysql后,更改 "mysql" 数据库里的 "user" 表里的 "host" 项,从"localhost"改称"%"

mysql -u root -pvmwaremysql>use mysql;

mysql>update user set host = '%' where user = 'root';

mysql>select host, user from user;




你可能感兴趣的:(linux命令)