zoukankan      html  css  js  c++  java
  • 服务器mysql允许远程连接

    首先登录: mysql -u root -h localhost -p

    use mysql                #打开mysql数据库

    #将host设置为%表示任何ip都能连接mysql,当然您也可以将host指定为某个ip

         update user set host='%' where user='root' and host='localhost';

         flush privileges;        #刷新权限表,使配置生效

         然后我们就能远程连接我们的mysql了。

    3、如果您想关闭远程连接,恢复mysql的默认设置(只能本地连接),您可以通过以下步骤操作:

         use mysql                #打开mysql数据库

         #将host设置为localhost表示只能本地连接mysql

         update user set host='localhost' where user='root';

         flush privileges;        #刷新权限表,使配置生效

    备注:您也可以添加一个用户名为yuancheng,密码为123456,权限为%(表示任意ip都能连接)的远程连接用户。命令参考如下:

         grant all on *.* to 'yuancheng'@'%' identified by '123456';

         flush privileges;

  • 相关阅读:
    架构资料
    Node参考资料
    运维参考资料
    前端参考资料
    Python参考资料
    推荐几个工具型网站
    学好Mac常用命令,助力iOS开发
    git submodule相关操作
    HttpURLConnection传JSON数据
    【树莓派笔记3】安装配置samba 和Windows进行文件共享
  • 原文地址:https://www.cnblogs.com/hellodemo/p/6204695.html
Copyright © 2011-2022 走看看