CentOS7安装Mysql
Posted wuba
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7安装Mysql相关的知识,希望对你有一定的参考价值。
说明:命令从上往下
yum install mysql* 安装mysql相关依赖
yum install mariadb-server
systemctl start mariadb.service
mysqladmin -u root password xxxx 设置root用户密码
mysql -uroot -p xxxx 登录mysql
grant all privileges on *.* to root@‘%‘ identified by ‘******‘ ***表示数据库连接密码,设置允许远程连接
以上是关于CentOS7安装Mysql的主要内容,如果未能解决你的问题,请参考以下文章