Home > Database > Mysql Tutorial > MySQL远程连接服务器容易出错的问题

MySQL远程连接服务器容易出错的问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 16:52:11
Original
1033 people have browsed it

MySQL的命令也是不好记,好容易乱,而且想登录服务器默认是不可能的,要在服务器上授权给所想登录机的IP。看看命令mysqlgt; gra

MySQL的命令也是不好记,好容易乱,而且想登录服务器默认是不可能的,要在服务器上授权给所想登录机的IP。

看看命令

mysql> grant all privileges on *.* to root@"%" identified by '0123456789' with grant option;

上面的命令创建一个可以从任意机器以root登录的超级账号,登录密码是0123456789。这样,客户机就可以使用方便的图形工具进行登录和操作,包括修改root的口令。

不过,有点要说明下,我这里也犯了个错,,因为MySQL默认的用户,而且也是超级权限用户是root,所以运行的时候也要是在root登录模式下的,要不就会报错。

ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password:NO)

要注意哦,很容易出错,而且不一定马上想到是这个错误。

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template