解决 centos7.0 安装 mysql 后出现 access defind for user@'localhost'的错误
在使用 yum 安装完 mariadb, mariadb-server, mariadb-devel 后
1. rpm -qa | grep maria 查看 maria 相关库的是否在进程中
2. netstat -tulp 查看网络服务软件的进程列表,mysql 是否在(yum install net-tools 安装 netatat 等网络分析工具)
3. mysql_secure_installation 设置安全 mysql,设置 mysql 系统的 root 权限密码,默认为空
4. 以上当设置密码时出现"access defind for user@'localhost'"类似的错误,则可使用一下方法。
(1). mysql -uroot -p 回车空密码登录进 mysql 系统
(2). set password for 'root'@'localhost' = password('你的密码'); 当前就设置密码回车
(3). 然后再 mysql -uroot -p 使用刚才的密码登录进去,show databases; 查看系统系统的数据库列表
5. grant all privileges on *.* to 'root'@'%' identfied by '你的数据库系统密码'; 设置 mysql 的远程连接
grant all privileges on 库名.表名 to '用户名'@'IP 地址' identified by '密码' with grant option;
评论