当前位置:Gxlcms > 数据库问题 > 阿里云 服务器创建mysql

阿里云 服务器创建mysql

时间:2021-07-01 10:21:17 帮助过:14人阅读

技术分享图片   1:安装yum -y install mysql   #没有yum的百度教程安装,阿里云买的一般都自带有 2:配置 3:重启   远程连接报: 1:报ERROR 1045 (28000): Access denied for user ‘root‘@‘localhost‘ (using password NO)  //说明该账号不支持远程登陆,只支持在本地登录,需要在服务器端创建一个可以远程登录的账号      (1)查看当前mysql的所有用户信息: mysql> select Host,User,Password from mysql.user; //一般默认的都是本地用户     (2)创建一个可远程连接的用户: create user 用户名 identified by ‘密码‘;     (3)创建完成了,在程序里面连接发现还是没有权限,刚才我们只是创建了用户,还没有对这个用户分配权限 grant all privileges on *.* to ‘用户名‘@‘%‘identified by ‘密码‘ with grant option;     (4)然后刷新mysql用户权限相关表  flush privileges ;   还有两个常用操作:   修改指定用户密码 update mysql.user set password=password(‘新密码‘) where User="test" and Host="localhost";   删除用户 delete from user where User=‘test‘ and Host=‘localhost‘;

阿里云 服务器创建mysql

标签:信息   用户名   inf   color   远程登陆   mys   bubuko   access   用户   

人气教程排行