CentOs 安装 Mysql
Posted 三目鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOs 安装 Mysql相关的知识,希望对你有一定的参考价值。
本文源于 网上, 我只是加以验证:
https://blog.csdn.net/czmchen/article/details/46645763
https://jingyan.baidu.com/article/86fae346aa437f3c48121a5b.html
1: 安装nysql
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm # rpm -ivh mysql-community-release-el7-5.noarch.rpm # yum install mysql-community-server
2: 启动
# service mysqld restart
3: 进入MySQL 并修改密码:
mysql -uroot use mysql; update user set password=password(‘123456‘) where user=‘root‘; flush privileges;
4: 远程授权访问;
授权: grant all on *.* to ‘root‘@‘%‘ identified by ‘password‘ with grant option; //允许账户root从任何主机连接到所有数据库(*.*) grant all on test.* to ‘user‘@‘%‘ identified by ‘password‘ with grant option; //允许账户user从任何主机连接到test数据库(test.*)
flush privileges; //刷新系统授权表
5: 退出
exit ;
以上是关于CentOs 安装 Mysql的主要内容,如果未能解决你的问题,请参考以下文章