(二)MySQL数据库安装
一:默认yum存储库安装
安装下载工具
yum install -y wget
下载mysql官方yum安装包
wget https://repo.mysql.com//mysql80-community-release-el7-5.noarch.rpm
安装官方yum源
yum -y localinstall mysql57-community-release-el7-11.noarch.rpm
二:选择指定发行版本安装
1)列出mysql所有版本
yum repolist all | grep mysql
2)安装yum配置工具
yum -y install yum-utils
3)禁用8.0版本
yum-config-manager --disable mysql80-community
4)启用5.7版本
yum-config-manager --enable mysql57-community
5)检查启用版本
yum repolist enabled | grep mysql
三:安装MySQL
安装服务端,客户端
yum install mysql-community-server mysql
启动mysql服务
systemctl start mysqld
设置mysql服务开机自启
systemctl enable mysqld
查看mysql安装
ls /var/lib/mysql
获取首次登陆的密码
grep 'temporary password' /var/log/mysqld.log
登陆mysql数据库
mysql -uroot -p''
修改mysql数据库密码
alter user 'root'@'localhost' identified by 'HuaWei@123';
退出数据库
\q
用新密码登陆数据库
mysql -uroot -p'HuaWei@123'
退出数据库
\q
四:重启MySQL
systemctl restart mysqld
五:创建用户,并赋予权限
grant select,drop,insert on *.* to 'catgod'@'localhost' identified by 'HuaWei@123';
查看用户
select user,host from mysql.user;
刷新权限表
flush privileges;
查看用户权限
show grants for 'catgod'@'localhost';
退出数据库
\q
感谢大家,点赞,收藏,关注,评论!