CentOS 7 安装MySQL(mariadb 版)

1. 安装

yum install -y mariadb-server

2. 启动、停止、重启数据库

systemctl start mariadb
systemctl stop mariadb
systemctl restart mariadb

3. 数据库初始化,设置管理员密码

mysql_secure_installation

CentOS 7 安装MySQL(mariadb 版)

 

 4. 进入数据库

mysql -uroot -p123        // 范例:用户名为root,密码为123

5. 修改权限

show databases;        // 显示所有数据库
use mysql;                // 进入mysql库
select host, user, password from user;        // 查询当前权限
// 将默认本地访问改为允许所有方式访问,即允许远程访问,如ssh
update user set host="%" where host="localhost"; 
flush privileges;        // 刷新权限列表
exit                    // 退出数据库

6. 重启数据库,使5的修改生效

systemctl restart mariadb

7. 推荐数据库管理软件:sqldeveloper, sqlyog, navicat

CentOS 7 安装MySQL(mariadb 版)

上一篇:popupwindow的使用


下一篇:windbg执行.cordll -ve -u -l报CLR DLL status: No load attempts原因之一