亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

mysql:ERROR 1045 (28000): Access denied for

系統(tǒng) 2847 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數(shù)據(jù)庫(kù)的user表里,存在用戶名為空的賬戶即匿名賬戶,導(dǎo)致登錄的時(shí)候是雖然用的是root,但實(shí)際是匿名登錄的,通過錯(cuò)誤提示里的
            
          
        
      
      
        
          
            ''@'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)


更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號(hào)聯(lián)系: 360901061

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

【本文對(duì)您有幫助就好】

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

發(fā)表我的評(píng)論
最新評(píng)論 總共0條評(píng)論
主站蜘蛛池模板: 国产精久久一区二区三区 | 久久国产成人精品麻豆 | 国产香蕉91tv永久在线 | 在线播放日本爽快片 | 婷婷综合久久中文字幕一本 | 亚洲精品一区二区三区五区 | 欧美日韩中文国产一区 | 九九九热在线精品免费全部 | 成在线人永久免费播放视频 | 免费的毛片网站 | 一级做a爱片久久蜜桃 | 久久久久久久性 | 99热最新网址获取 | 一本伊大人香蕉久久网手机 | 国产成人无精品久久久 | 不卡视频免费在线观看 | 天天操夜夜操视频 | 国产综合婷婷 | 久久久免费 | 免费爱爱小视频 | 国产亚洲欧美一区 | 午夜精品久久久 | 超碰最新上传 | 四虎免费紧急入口观看 | 色综合久久中文字幕综合网 | 农村妇女又色黄一级毛片 | 青草视频网 | 亚洲精品香蕉一区二区在线观看 | 亚洲九九视频 | 天天操天天干天天干 | 日韩综合区 | 久久成人午夜 | se94se欧美| 久久久久久综合七次郎 | 欧美一区二区在线观看免费网站 | 欧美一级毛片高清毛片 | 四虎永久网址在线观看 | 亚洲免费区 | 国产在线观看自拍 | 亚洲精品欧美精品日韩精品 | 九九热视频免费在线观看 |