亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

跳過授權表登錄后使用replace into創建root權限用戶

發布時間:2020-07-01 17:14:40 來源:網絡 閱讀:912 作者:gouliag 欄目:關系型數據庫

    起因:

    剛剛搭建好的mysql數據庫,做基礎優化時,不小心把所有用戶都刪除了,并且退出了。沒辦法,只好跳過授權表登錄,新建root用戶。

    過程如下:


一、停掉mysql,跳過授權登錄

    [root@explnk-zabbix zabbix-2.2.9]# /etc/init.d/mysqld stop

    Shutting down MySQL... SUCCESS! 

    [root@explnk-zabbix zabbix-2.2.9]# mysqld_safe --skip-grant-table &

    [1] 30178

    [root@explnk-zabbix zabbix-2.2.9]# 160418 10:49:54 mysqld_safe Logging to '/application/mysql/data/explnk-zabbix.err'.

    160418 10:49:54 mysqld_safe Starting mysqld daemon with databases from /application/mysql/data

    

    [root@explnk-zabbix zabbix-2.2.9]# mysql

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

    Your MySQL connection id is 1

    Server version: 5.5.32 MySQL Community Server (GPL)

    

    Copyright (c) 2000, 2013, 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>


二、創建擁有root權限的用戶

  2.1 錯誤例子:

    這里最開始遇到個坑,使用insert into創建的用戶沒有任何權限,登錄之后無法進行操作,語句如下:

    INSERT INTO user (Host,User,Password) VALUES('localhost','root',PASSWORD('biscuit'));

    *************************** 2. row ***************************

                      Host: localhost

                      User: root

                  Password: *7495041D24E489A0096DCFA036B166446FDDD992

               Select_priv: N

               Insert_priv: N

               Update_priv: N

               Delete_priv: N

               Create_priv: N

                 Drop_priv: N

               Reload_priv: N

             Shutdown_priv: N

              Process_priv: N

                 File_priv: N

                Grant_priv: N

           References_priv: N

                Index_priv: N

                Alter_priv: N

              Show_db_priv: N

                Super_priv: N

     Create_tmp_table_priv: N

          Lock_tables_priv: N

              Execute_priv: N

           Repl_slave_priv: N

          Repl_client_priv: N

          Create_view_priv: N

            Show_view_priv: N

       Create_routine_priv: N

        Alter_routine_priv: N

          Create_user_priv: N

                Event_priv: N

              Trigger_priv: N

    Create_tablespace_priv: N

                  ssl_type: 

                ssl_cipher: 

               x509_issuer: 

              x509_subject: 

             max_questions: 0

               max_updates: 0

           max_connections: 0

      max_user_connections: 0

                    plugin: 

     authentication_string: NULL



  2.2 正確方法1:

    mysql> use mysql

    Database changed

    mysql> insert into user (Select_priv,           Insert_priv,           Update_priv,           Delete_priv,           Create_priv,             Drop_priv,           Reload_priv,         Shutdown_priv,          Process_priv,             File_priv,            Grant_priv,       References_priv,            Index_priv,            Alter_priv,          Show_db_priv,            Super_priv, Create_tmp_table_priv,      Lock_tables_priv,          Execute_priv,       Repl_slave_priv,      Repl_client_priv,      Create_view_priv,        Show_view_priv,   Create_routine_priv,    Alter_routine_priv,      Create_user_priv,            Event_priv,          Trigger_priv,Create_tablespace_priv,User,Password) values ( 'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','gl','gl');    

    Query OK, 1 row affected, 3 warnings (0.06 sec)

    

    mysql> update user set password=PASSWORD('explink') where user='gl';

    Query OK, 1 row affected (0.08 sec)

    Rows matched: 1  Changed: 1  Warnings: 0


  2.3 正確方法2:

    跳過授權表登錄后是無法使用grant建立用戶的,報錯如下:

    mysql> grant all privileges on *.* to liang@'localhost' identified by '123456' with grant option;    

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


    解決辦法:

    只要刷新一下用戶權限即可

    mysql> flush privileges;

    Query OK, 0 rows affected (0.00 sec)

    

    mysql> grant all privileges on *.* to liang@'localhost' identified by '123456' with grant option;

    Query OK, 0 rows affected (0.00 sec)



三、退出登錄并重新啟動mysql

    [root@explnk-zabbix zabbix-2.2.9]# /etc/init.d/mysqld stop

    [root@explnk-zabbix zabbix-2.2.9]# /etc/init.d/mysqld start


四、登錄mysql查看權限


    [root@explnk-zabbix zabbix-2.2.9]# mysql -ugl -p           

    Enter password: 

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

    Your MySQL connection id is 1

    Server version: 5.5.32 MySQL Community Server (GPL)

    

    Copyright (c) 2000, 2013, 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> select * from mysql.user\G


    *************************** 3. row ***************************

                      Host: 

                      User: gl

                  Password: *5F70B50879BD3B98CB5A945D3A6A7C92F41B8AE8

               Select_priv: Y

               Insert_priv: Y

               Update_priv: Y

               Delete_priv: Y

               Create_priv: Y

                 Drop_priv: Y

               Reload_priv: Y

             Shutdown_priv: Y

              Process_priv: Y

                 File_priv: Y

                Grant_priv: Y

           References_priv: Y

                Index_priv: Y

                Alter_priv: Y

              Show_db_priv: Y

                Super_priv: Y

     Create_tmp_table_priv: Y

          Lock_tables_priv: Y

              Execute_priv: Y

           Repl_slave_priv: Y

          Repl_client_priv: Y

          Create_view_priv: Y

            Show_view_priv: Y

       Create_routine_priv: Y

        Alter_routine_priv: Y

          Create_user_priv: Y

                Event_priv: Y

              Trigger_priv: Y

    Create_tablespace_priv: Y

                  ssl_type: 

                ssl_cipher: 

               x509_issuer: 

              x509_subject: 

             max_questions: 0

               max_updates: 0

           max_connections: 0

      max_user_connections: 0

                    plugin: 

     authentication_string: NULL

    3 rows in set (0.00 sec)


六、perfect
    

    參考blog:http://my.oschina.net/leejun2005/blog/76140

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沛县| 静海县| 怀仁县| 余干县| 晋宁县| 太康县| 莱阳市| 疏勒县| 浦城县| 玉门市| 滁州市| 女性| 武汉市| 承德市| 鲁甸县| 富平县| 伊金霍洛旗| 汾西县| 双城市| 开化县| 阳谷县| 东源县| 京山县| 鄄城县| 通河县| 方山县| 图木舒克市| 博客| 剑川县| 钟祥市| 鄂尔多斯市| 天等县| 砀山县| 冷水江市| 连平县| 横峰县| 务川| 若羌县| 太保市| 正宁县| 高淳县|