写点什么

解决 centos7.0 安装 mysql 后出现 access defind for user@'localhost'的错误

作者:北桥苏
  • 2023-05-09
    广东
  • 本文字数:420 字

    阅读完需:约 1 分钟

在使用 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;



用户头像

北桥苏

关注

公众号:ZERO开发 2023-05-08 加入

专注后端实战技术分享,不限于PHP,Python,JavaScript, Java等语言,致力于给猿友们提供有价值,有干货的内容。

评论

发布
暂无评论
解决centos7.0安装mysql后出现access defind for user@'localhost'的错误_MySQL_北桥苏_InfoQ写作社区