码迷,mamicode.com
首页 > 数据库 > 详细

CentOs 安装 Mysql

时间:2018-05-05 15:26:31      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:账户   date   exit   数据   span   ide   mysqld   start   ase   

本文源于 网上, 我只是加以验证:

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

标签:账户   date   exit   数据   span   ide   mysqld   start   ase   

原文地址:https://www.cnblogs.com/sanmubird/p/8994679.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!