CentOS7管理MariaDB
Posted hupingzhi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS7管理MariaDB相关的知识,希望对你有一定的参考价值。
systemctl start mariadb #启动MariaDB
systemctl stop mariadb #停止MariaDB
systemctl restart mariadb #重启MariaDB
systemctl enable mariadb #设置开机启动
修改密码
用UPDATE直接编辑user表
首先登录mysql。
use mysql;
update user set password=password(‘123‘) where user=‘root‘ and host=‘localhost‘;
flush privileges;
以上是关于CentOS7管理MariaDB的主要内容,如果未能解决你的问题,请参考以下文章