zoukankan      html  css  js  c++  java
  • ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

    在给数据库设置用户时,

    mysql> CREATE USER 'xxxx'@'localhost' IDENTIFIED BY 'xxxx';
    Query OK, 0 rows affected (0.00 sec)//这是成功时候应出现的

    结果输入第一行之后产生如题所示错误:

    ERROR 1290 (HY000):      
    The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement

    上网百度解决方案:

    mysql> flush privileges;  //直译:更新权限

    就ok了

     

    附带mysql的操作说明:

    1.使用管理员权限打开命令提示符,步骤:开始菜单选择Windows系统 - 命令提示符 - 在其上点击右键选择 - 更多 - 以管
    理员身份运行。(Windows PowerShell)

    PS C:Windowssystem32> net start mysql         //输入这句话啊
    MySQL 服务正在启动 .
    MySQL 服务无法启动。

     2.cd 转到自己安装mysql的路径的bin目录(试试“cd..”),比如

    C:MySQLmysql-5.7.20-winx64in>

    3.进入mysql(输入密码)

    C:MySQLmysql-5.7.20-winx64in>mysqladmin -u root -p password

     

    Welcome to the MySQL monitor. Commands end with ; or g.
    Your MySQL connection id is 3
    Server version: 5.7.20
    Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.
    Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
    mysql>

     就可以进行操作了

    退出可以直接

    mysql>exit

    更具体的去看老师给的文档

     

     

     

  • 相关阅读:
    Fixed数据类型
    unity3d游戏物体跟着鼠标方向移动
    unity gl 画线
    Unity3D研究院之游戏对象的访问绘制线与绘制面详解(十七)
    像素填充率,纹理填充率,显存带宽
    GPU渲染管线与shader
    Unity协程(Coroutine)原理深入剖析
    C#基本线程同步
    C#多线程编程
    详解C#中的反射
  • 原文地址:https://www.cnblogs.com/mo-sheng/p/11867835.html
Copyright © 2011-2022 走看看