Mysql 锦集……持续更新中

1、navicat1130 ERROR 1130: Host '192.168.1.3' is not allowed to connect to thisMySQL server

问题所在:

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

具体操作:

       mysql -uroot -p root
       mysql->use mysql
       mysql->update user set host = '%' where user ='root';
       mysql->grant all privileges on *.* to 'root'@'%' with grant option;
       mysql->flush privileges;
       mysql->exit;
       sudo service mysql restart;
2、msyql5.7修改数据库密码

      操作系统为centos7 64

           1、修改 /etc/my.cnf,在 [mysqld] 小节下添加一行:skip-grant-tables=1

            这一行配置让 mysqld 启动时不对密码进行验证

           2、重启 mysqld 服务:systemctl restart mysqld

           3、使用 root 用户登录到 mysql:mysql -u root 

           4、切换到mysql数据库,更新 user 表:

               update user set authentication_string = password('root'), password_expired = 'N', password_last_changed = now() where user = 'root';

           在之前的版本中,密码字段的字段名是 password,5.7版本改为了 authentication_string

          5、退出 mysql,编辑 /etc/my.cnf 文件,删除 skip-grant-tables=1 的内容

          6、重启 mysqld 服务,再用新密码登录即可

 

         另外,MySQL 5.7 在初始安装后(CentOS7 操作系统)会生成随机初始密码,并在 /var/log/mysqld.log 中有记录,可以通过 cat 命令查看,找 password 关键字

       找到密码后,在本机以初始密码登录,并且(也只能)通过 alter user 'root'@'localhost' identified by 'root' 命令,修改 root 用户的密码为 root,然后退出,重新以root用户和刚设置的密码进行登录即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值