安装mysql

Posted 大威少

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安装mysql相关的知识,希望对你有一定的参考价值。

安装mysql
$ su - root
# yum -y install mysql mysql-server mysql-devel
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum -y install mysql-community-server

 

配置Mysql
** 开启Mysql服务
# systemctl start mysqld.service
** 设置root用户密码
# mysqladmin -uroot password ‘123456‘
** 为用户以及其他机器节点授权
mysql> grant all on *.* to [email protected]‘hadoop01‘ identified by ‘123456‘;

grant:授权
all:所有权限
*.*:数据库名称.表名称
root:操作mysql的用户
@‘‘:主机名
密码:123456

















以上是关于安装mysql的主要内容,如果未能解决你的问题,请参考以下文章

mysql如何安装?

MySQL安装Error 1045

mysql如何安装

MySQL 5.7怎样安装

windows怎么安装mysql

windows怎么安装mysql