centos 7 上mysql部署

前端之家收集整理的这篇文章主要介绍了centos 7 上mysql部署前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

根据网上搜索内容整合

一 卸载(一些安装后不能启动的问题,需要先卸载干净)

sudo rm /usr/local/MysqL

sudo rm -rf /usr/local/MysqL*

sudo rm -rf /Library/StartupItems/MysqLCOM

sudo rm -rf /Library/PreferencePanes/My*

rm -rf ~/Library/PreferencePanes/My*

sudo rm -rf /Library/Receipts/MysqL*

sudo rm -rf /Library/Receipts/MysqL*

sudo rm -rf /var/db/receipts/com.MysqL.

调用vim /etc/hostconfig,删除 MysqLCOM=-YES-这一行


二 安装

1 下载 MysqL57-community-release-el7-8.noarch.rpm 的 YUM 源:
wgethttp://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm

2 安装 MysqL57-community-release-el7-8.noarch.rpm:
rpm -ivh MysqL57-community-release-el7-8.noarch.rpm
安装完后,得到如下两个包:
MysqL-community.repo
MysqL-community-source.repo

3安装 MysqL

yum -y install MysqL MysqL-server MysqL-devel

安装完毕后,在 /var/log/MysqLd.log 文件中会自动生成一个随机的密码,我们需要先取得这个随机密码,以用于登录 MysqL 服务端:
grep "password" /var/log/MysqLd.log
打印如下内容
A temporary password is generated forroot@localhost: hilX0U!9i3_6
我们复制root@localhost: 后面的随机字符串,这个字符串就是 MysqL 在安装完成后为我们随机生成的密码;

4 登录MysqL 服务端并更新用户 root 的密码:
MysqL -u root -philX0U!9i3_6
打印出 MysqL 的版本即表明已登录
设置用户 root 可以在任意 IP 下被访问:
grant all privileges on *.* toroot@"%" identified by "新密码";
设置用户 root 可以在本地被访问:
grant all privileges on *.* toroot@"localhost" identified by "新密码"; 刷新权限使之生效: flush privileges; 更新 MysqL用户 root的密码: set password = password('新密码'); 注意:由于 MysqL5.7 采用了密码强度验证插件 validate_password,故此我们需要设置一个有一定强度的密码; 输入 exit 后用新密码再次登录看看吧!

原文链接:https://www.f2er.com/centos/378824.html

猜你在找的CentOS相关文章