码迷,mamicode.com
首页 > 数据库 > 详细

fedora_安装mysql

时间:2015-04-04 18:10:35      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

  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.service
      systemctl 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 3
      Server 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 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.
      

       

    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 root@localhost=password(‘XXXX‘);
      

      其中root@localhost  @前面的是 user;@后面的是 host ;你可以把XXXXX换成你的密码

    11. 其他账户设置类似
    12. 现在重新登录
      mysql -u root -p 
      

      输入上述命令后,要求输入对应的密码即可

fedora_安装mysql

标签:

原文地址:http://www.cnblogs.com/together-sharing-for-freshman/p/4392495.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!