Mysql高级

Centos7 安装mysql

MySQL官网下载地址

http://dev.mysql.com/downloads/mysql/

Mysql安装

(1)# rpm -qa | grep mariadb

卸载mariadb

(2)   # rpm -e --nodeps mariadb-libs

将下载的安装包拷贝到centos中解压

(3)   # tar -xf mysql-5.7.28-1.el6.x86_64.rpm-bundle.tar

在安装目录下执行rpm安装

# rpm -ivh mysql-community-common-5.7.28-1.el6.x86_64.rpm

# rpm -ivh mysql-community-libs-5.7.28-1.el6.x86_64.rpm

# rpm -ivh mysql-community-client-5.7.28-1.el6.x86_64.rpm

# rpm -ivh mysql-community-server-5.7.28-1.el6.x86_64.rpm

可能遇到的其他依赖和问题

# yum install net-tools -y

# yum install perl -y

安装server可能遇到 检查签名

解决办法

# rpm -ivh mysql-community-server-5.7.28-1.el6.x86_64.rpm --force --nodeps

修改/etc/my.cnf文件,在[mysqld]节点下添加如下配置

[mysqld]

explicit_defaults_for_timestamp=true //显示指定默认值为timestamp类型的字段

查看datadir的值:

[mysqld]

datadir=/var/lib/mysql

初始化数据库

# mysqld --initialize --user=mysql

查看生成的临时密码

# cat /var/log/mysqld.log

启动mysql服务

# service mysqld start

登录mysql

# mysql -uroot -p     (输入临时密码)

修改root用户密码

mysql> set password = password("000000");

查看字符编码

show variables like "%char%";

永久修改字符编码

[client]

default-character-set=utf8

[mysql]

default-character-set=utf8

[mysqld]

character_set_server=utf8

collation-server=utf8_general_ci

修改已有库和表的编码

mysql> alter database test character set 'utf8';

Query OK, 1 row affected (0.01 sec)

mysql> alter table testconvert to character set 'utf8';

Query OK, 1 row affected (0.09 sec)

Records: 1 Duplicates: 0 Warnings: 0

MySQL的用户管理

(1)MySQL的用户管理在 mysql库中的user表中

需要了解的列: Host,User, authentication_string等, 可通过 desc user 查看user表结构

(1)相关命令

命令 描述 备注
create user zhang3 identified by '123123'; 创建名称为zhang3的用户,密码设为123123;
select host,user,password,select_priv,insert_priv,drop_priv from mysql.user; 查看用户和权限的相关信息
set password =password('123456') 修改当前用户的密码
update mysql.user set authentication_string=password('123456') where user='li4'; 修改其他用户的密码 注意:mysql 5.7 通过authentication_string表示密码列 所有通过user表的修改,必须用flush privileges;命令才能生效
update mysql.user set user='li4' where user='wang5'; 修改用户名 所有通过user表的修改,必须用flush privileges;命令才能生效
drop user li4 删除用户 不要通过delete from user u where user='li4' 进行删除,系统会有残留信息保留。

修改用户密码

update mysql.user set authentication_string=password('123456') where user='li4';

注意:所有通过user表的修改,必须用flush privileges;命令才能生效

远程工具访问

当前root用户对应的host值为localhost,意味着只允许本机连接

mysql> update user set host='%' where user = 'root';

需要将host的值修改为%,表示允许所有远程通过 TCP方式的连接

MYSQL的权限管理

授予权限

命令 描述
grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址 identified by ‘连接口令’ 该权限如果发现没有该用户,则会直接新建一个用户。 示例: grant select,insert,delete,drop on atguigudb.* to li4@localhost ; 给li4用户用本地命令行方式下,授予atguigudb这个库下的所有表的插删改查的权限。
grant all privileges on . to joe@'%' identified by '123'; 授予通过网络方式登录的的joe用户 ,对所有库所有表的全部权限,密码设为123.

收回权限

命令 描述 备注
show grants 查看当前用户权限
revoke [权限1,权限2,…权限n] on 库名.表名 from 用户名@用户地址 ; 收回权限命令
REVOKE ALL PRIVILEGES ON mysql.* FROM joe@localhost; 收回全库全表的所有权限
REVOKE select,insert,update,delete ON mysql.* FROM joe@localhost; 收回mysql库下的所有表的插删改查权限

提示:权限收回后,必须用户重新登录后,才能生效。


上一篇:RAID


下一篇:K8s之ReplicaSet学习笔记