时间:2021-07-01 10:21:17 帮助过:46人阅读
其他配置
Remove anonymous users? [Y/n] <– 是否删除匿名用户,回车
Disallow root login remotely? [Y/n] <–是否禁止root远程登录,回车,
Remove test database and access to it? [Y/n] <– 是否删除test数据库,回车
Reload privilege tables now? [Y/n] <– 是否重新加载权限表,回车
初始化MariaDB完成,接下来测试登录
mysql -uroot -p<password>
配置MariaDB的字符集
查看/etc/my.cnf文件内容,其中包含一句!includedir /etc/my.cnf.d 说明在该配置文件中引入/etc/my.cnf.d 目录下的配置文件。
编辑server.cnf文件,在[mysqld]标签下添加
vim /etc/my.cnf.d/server.cnf
[mysqld]
init_connect=‘SET collation_connection = utf8_unicode_ci‘
init_connect=‘SET NAMES utf8‘
character-set-server=utf8
collation-server=utf8_unicode_ci
skip-character-set-client-handshake
注:如果/etc/my.cnf.d 目录下无server.cnf文件,则直接在/etc/my.cnf文件的[mysqld]标签下添加以上内容。
vim /etc/my.cnf.d/mysql-clients.cnf
在[mysql]段中添加
default-character-set=utf8
systemctl restart mariadb
mysql -uroot -p<password>
show variables like "%character%";show variables like "%collation%";
直接创建用户并授权的命令
grant all on *.* to username@localhost indentified by ‘password‘;
授予外网登陆权限
mysql>grant all privileges on *.* to username@‘%‘ identified by ‘password‘;
授予权限并且可以授权
mysql>grant all privileges on *.* to username@‘hostname‘ identified by ‘password‘ with grant option;
查询各Schema和Table占用的空间:
use information_schema;
select table_schema,round(sum(DATA_LENGTH/1024/1024),2) as datasize from tables group by table_schema;
其中只授予部分权限把 其中 all privileges或者all改为select,insert,update,delete,create,drop,index,alter,grant,references,reload,shutdown,process,file其中一部分。
Linux系统教程:如何检查MariaDB服务端版本 http://www.linuxidc.com/Linux/2015-08/122382.htm
MariaDB Proxy读写分离的实现 http://www.linuxidc.com/Linux/2014-05/101306.htm
Linux下编译安装配置MariaDB数据库的方法 http://www.linuxidc.com/Linux/2014-11/109049.htm
CentOS系统使用yum安装MariaDB数据库 http://www.linuxidc.com/Linux/2014-11/109048.htm
安装MariaDB与MySQL并存 http://www.linuxidc.com/Linux/2014-11/109047.htm
忘记root用户名和密码
首先用 killall -TERM mysqld 向mysqld server 发送kill命令关掉mysqld server(不是 kill -9),你必须是UNIX的root用户或者是你所运行的SERVER上的同等用户,才能执行这个操作
然后 /usr/bin/mysqld_safe --skip-grant-tables --skip-networking &
登录; mysql -p或者使用mysql无密码登录
>use mysql
>update user set password=password("new_pass") where user="root";
>flush privileges;
>exit;
修改完成之后重启数据库,即可用修改好 root 密码登录
Centos7.4 yum 安装MariaDB
标签:test image enable select sele 内容 rem 字符集 其他