欧美三区_成人在线免费观看视频_欧美极品少妇xxxxⅹ免费视频_a级毛片免费播放_鲁一鲁中文字幕久久_亚洲一级特黄

mysql:ERROR 1045 (28000): Access denied for

系統 2932 0
      
        Exception: ERROR 
        
          1045
        
         (
        
          28000
        
        ): Access denied 
        
          for
        
         user 
        
          '
        
        
          root
        
        
          '
        
        @
        
          '
        
        
          localhost
        
        
          '
        
         (
        
          using
        
      
      
        
           password: NO)
        
        



問題描述如下:



landen@landen
      
      -Lenovo:~
      
        $ su root;

密碼: 

root@landen
      
      -Lenovo:/home/
      
        landen# mysql

ERROR 
      
      
        1045
      
       (
      
        28000
      
      ): Access denied 
      
        for
      
       user 
      
        '
      
      
        root
      
      
        '
      
      @
      
        '
      
      
        localhost
      
      
        '
      
       (
      
        using
      
      
         password: NO)




        
          原因:
        
        
          
            
              mysql數據庫的user表里,存在用戶名為空的賬戶即匿名賬戶,導致登錄的時候是雖然用的是root,但實際是匿名登錄的,通過錯誤提示里的
            
          
        
      
      
        
          
            ''@'localhost'
          
        
      
      
        
          
            
              可以看出來
            
          
        
        



solution: 


      
      
        1
      
      .(http:
      
        //
      
      
        www.jb51.net/LINUXjishu/10981.html)
      
      
        2
      
      .(http:
      
        //
      
      
        blog.csdn.net/tys1986blueboy/article/details/7056835)
      
      
        

演示如下:

root@landen
      
      -Lenovo:/home/landen# 
      
        
          
            /etc/init.d/
          
        
      
      
        
          
            
              mysql stop
            
          
        
        

Rather than invoking init scripts through 
      
      /etc/init.d, use the service(
      
        8
      
      
        )

utility, e.g. service mysql stop



Since the script you are attempting to invoke has been converted to an

Upstart job, you may also use the stop(
      
      
        8
      
      
        ) utility, e.g. stop mysql

mysql stop
      
      /
      
        waiting

root@landen
      
      -Lenovo:/home/landen# 
      
        
          
            mysqld_safe --user=mysql --skip-grant-tables --skip-networking&
          
        
      
      
        

[
      
      
        1
      
      ] 
      
        15969
      
      
        

root@landen
      
      -Lenovo:/home/landen# 
      
        130406
      
      
        15
      
      :
      
        32
      
      :
      
        52
      
       mysqld_safe Can
      
        '
      
      
        t log to error log and syslog at the same time.  Remove all --log-error configuration options for --syslog to take effect.
      
      
        130406
      
      
        15
      
      :
      
        32
      
      :
      
        52
      
       mysqld_safe Logging to 
      
        '
      
      
        /var/log/mysql/error.log
      
      
        '
      
      
        .


      
      
        130406
      
      
        15
      
      :
      
        32
      
      :
      
        52
      
       mysqld_safe Starting mysqld daemon with databases 
      
        from
      
       /
      
        var
      
      /lib/
      
        mysql



root@landen
      
      -Lenovo:/home/landen#
      
        
          
             mysql -
          
        
      
      
        
          
            
              u root mysql
            
          
        
        

Reading table information 
      
      
        for
      
      
         completion of table and column names

You can turn off 
      
      
        this
      
       feature to 
      
        get
      
       a quicker startup with -
      
        A



Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id 
      
      
        is
      
      
        1
      
      
        

Server version: 
      
      
        5.5
      
      .
      
        29
      
      -0ubuntu0.
      
        12.04
      
      .
      
        2
      
      
         (Ubuntu)



Copyright (c) 
      
      
        2000
      
      , 
      
        2012
      
      , 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
      
      > 
      
        
          
            update user set Password=PASSWORD('lk198981') where user='root'
          
        
      
      
        
          
            
              ;
            
          
        
        

Query OK, 
      
      
        0
      
       rows affected (
      
        0.08
      
      
         sec)

Rows matched: 
      
      
        4
      
        Changed: 
      
        0
      
        Warnings: 
      
        0
      
      
        



mysql
      
      >
      
        
          
            
               flush privileges;
            
          
        
        

Query OK, 
      
      
        0
      
       rows affected (
      
        0.04
      
      
         sec)



mysql
      
      >
      
        
          
            
               quit;
            
          
        
        

Bye

root@landen
      
      -Lenovo:/home/landen# 
      
        
          
            /etc/init.d/
          
        
      
      
        
          
            
              mysql restart
            
          
        
        

Rather than invoking init scripts through 
      
      /etc/init.d, use the service(
      
        8
      
      
        )

utility, e.g. service mysql restart



Since the script you are attempting to invoke has been converted to an

Upstart job, you may also use the stop(
      
      
        8
      
      ) and then start(
      
        8
      
      
        ) utilities,

e.g. stop mysql ; start mysql. The restart(
      
      
        8
      
      ) utility 
      
        is
      
      
         also available.

mysql start
      
      /running, process 
      
        16401
      
      
        

root@landen
      
      -Lenovo:/home/landen#
      
        
          
             mysql -uroot -
          
        
      
      
        
          
            
              p
            
          
        
        

Enter password: 

Welcome to the MySQL monitor.  Commands end with ; or \g.

Your MySQL connection id 
      
      
        is
      
      
        37
      
      
        

Server version: 
      
      
        5.5
      
      .
      
        29
      
      -0ubuntu0.
      
        12.04
      
      .
      
        2
      
      
         (Ubuntu)



Copyright (c) 
      
      
        2000
      
      , 
      
        2012
      
      , 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
      
      >
      
        
          
             show databases; 
          
        
      
      +--------------------+

| Database           |

+--------------------+

| information_schema |

| metastore_db       |

| mysql              |

| performance_schema |

| test               |

+--------------------+


      
        5
      
       rows 
      
        in
      
      
        set
      
       (
      
        0.00
      
      
         sec)



mysql
      
      >
      
        
          
            
               create database student;
            
          
        
        

Query OK, 
      
      
        1
      
       row affected (
      
        0.01
      
      
         sec)



mysql
      
      >
      
         show databases;


      
      +--------------------+

| Database           |

+--------------------+

| information_schema |

| metastore_db       |

| mysql              |

| performance_schema |

| student            |

| test               |

+--------------------+


      
        6
      
       rows 
      
        in
      
      
        set
      
       (
      
        0.00
      
      
         sec)



mysql
      
      >
      
        
          
            
               use student;
            
          
        
        

Database changed

mysql
      
      >
      
         quit;

Bye
      
    

?

mysql:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 国产色网 | 91亚洲影院| 欧美日韩中文国产一区发布 | 国产精品系列在线 | 亚洲精品色 | 亚洲欧美在线免费观看 | 欧美激情日韩 | 九九99久久精品在免费线bt | 成人国产精品视频 | 久久第四色 | 好吊日在线观看 | 亚洲第一页在线播放 | 欧美 亚洲 另类 热图 | 国产91精品黄网在线观看 | 2019中文字幕视频 | 免费黄色av | 国产美女极品免费视频 | 婷婷色综合久久五月亚洲 | 国产乱精品一区二区三区 | 九九热精品视频在线播放 | 欧美一区二区三区久久精品 | 精品久久一区二区 | 日韩欧美一级精品久久 | 91精品国产闺蜜国产在线 | 国产黄色在线观看 | se就是色94欧美setu | 黄网页在线观看 | 99精品免费久久久久久久久日本 | 视频一区在线 | 国产AV一区二区三区传媒 | 国产999精品久久久影片官网 | 日本精品在线观看 | 日韩午夜精品 | 91精品国产欧美一区二区 | 久久夜视频 | 国产japan色系videos护士 日韩精品视频在线免费观看 | 亚洲精品久久久久久一区二区 | 欧美18videos极品 | 北岛玲亚洲一区在线观看 | 欧美亚洲国产精品第一页 | 91久色视频 |