fedora_安裝mysql

來源:互聯網
上載者:User

標籤:

  1. 80%參照該文章  Fedora 20下 MySQL 的安裝,linux公社   http://www.linuxidc.com/Linux/2014-02/96392.htm
  2. 主要的命令 有
    1.   root許可權 下載 ,安裝,
      sudo yum -y install community-mysql-server

      會要求輸入密碼,接下來就是安裝了,需要點時間 直到出現 完畢!


    2. 輸入,不需要使用root許可權 ,開啟mysql服務
      systemctl start mysqld.servicesystemctl enable mysqld.service

       

    3. 表示 以root許可權進入mysql 因為之前還沒有設定密碼 
      mysql -u root 

       

    4. 成功則出現
      Welcome to the MySQL monitor.  Commands end with ; or \g.Your MySQL connection id is 3Server version: 5.6.23 MySQL Community Server (GPL)Copyright (c) 2000, 2015, Oracle and/or its affiliates. All rights reserved.Oracle is a registered trademark of Oracle Corporation and/or itsaffiliates. Other names may be trademarks of their respectiveowners.Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

       

    5. 查看一下 mysql中裡面有什麼 ,查看一下裡面的資料庫(注意mysql 語句 不區分大小寫,分好一定是英文半形)
      show databases;

       

    6. 結果如下
      +--------------------+| Database           |+--------------------+| information_schema || mysql              || performance_schema |+--------------------+3 rows in set (0.00 sec)

      --說明information_schema | | mysql | | performance_schema  這三個資料庫是mysql內建的,使用者最好不要在這裡操作

    7. 接下來就是想查看一下資料庫中使用者以及其密碼了
      select user, host, password from mysql.user;

       

    8. 結果如下
      +------+-----------------------+-------------------------------------------+| user | host                  | password                                  |+------+-----------------------+-------------------------------------------+| root | localhost             |     || root | localhost.localdomain |                                           || root | 127.0.0.1             |                                           || root | ::1                   |                                           ||      | localhost             |                                           ||      | localhost.localdomain |                                           |+------+-----------------------+-------------------------------------------+6 rows in set (0.00 sec)

       

          
    9. 還記得第3步中 通過 mysql -u root 預設進入 mysql的嗎?它對應root是第一個 也就是 user:root ;host:localhost
    10. 下面給這個使用者佈建密碼
      set password for [email protected]=password(‘XXXX‘);

      其中[email protected]  @前面的是 user;@後面的是 host ;你可以把XXXXX換成你的密碼

    11. 其他賬戶設定類似
    12. 現在重新登入
      mysql -u root -p 

      輸入上述命令後,要求輸入對應的密碼即可

fedora_安裝mysql

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.