Linux之MySQL安装及管理员账号配置(Cenos7)

本篇主要内容:

  • yum安装mysql
  • user配置

yum安装mysql

当我们使用yum install mysql会发现默认安装的是mariaDB,它是mysql的另一分支,并不是我们所希望的mysql,因此我们需要先配置仓库源,国内我们选择官方仓库源安装非常缓慢,所以我们选择清华大学开源软件镜像站

  • 配置yum仓库源

    1. 获取yum源

      wget https://mirrors.tuna.tsinghua.edu.cn/mysql/yum/mysql57-community-el7/mysql-community-release-el7-7.noarch.rpm
    2. 通过rpm更新
      (-U update; -v 显示执行过程; -h 安装时列出hash标记)

      rpm -Uvh mysql-community-release-el7-7.noarch.rpm
  • 安装mysql
    yum install mysql-community-server
  • 启动mysql
    service mysqld start
  • 查看登录密码
    grep 'temporary password' /var/log/mysqld.log
  • 登陆
    mysql -uroot -p
    登陆后需要更新密码,密码的默认强度系数比较高,需要涵盖字母,数字,符号

用户配置

  • 创建用户
    use mysql;
    create user  'demo@localhost' identified by 'your_password';
  • 为用户添加权限
    grant all on 'yourDB.*' to 'demo@localhost';
    flush privileges;

你可能感兴趣的:(linux,linux,mysql)