方法1: 用SET PASSWORD命令 测试成功 首先登录MySQL@1——mysql DOS 窗口中。 格式:mysql> set password for 用户名@localhost = password('新密码'); mysql> flush privileges; 刷新内存里...
分类:
数据库 时间:
2014-10-20 13:22:54
阅读次数:
281
grant all privileges on *.* to root@'%' identified by 'root'
修改云主机上的/etc/mysql/my.cnf 文件,注释掉 bind_address=127.0.0.1。这句ok...
分类:
其他好文 时间:
2014-10-16 20:30:23
阅读次数:
174
首先进入mysql:mysql -u root如果有密码会提示输入密码然后输入如下授权代码,如下即授权用户root使用密码admin123从任何主机连接到mysql服务器GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'admin12....
分类:
数据库 时间:
2014-10-13 15:38:09
阅读次数:
224
修改密码update user set password=password('') where user='root';FLUSH PRIVILEGES;远程访问权限:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '' WITH G....
分类:
数据库 时间:
2014-10-13 15:33:19
阅读次数:
202
在进行scp时报bash:scp:commandnotfound[root@localhostadd_admin]#scpocp_admin_privileges.mysqlroot@10.10.1.128:/rootroot@10.10.1.128‘spassword:bash:scp:commandnotfoundlostconnection查看本机是否安装openssh-clients软件包[root@localhostadd_admin]#rpm-qopenssh-cl..
分类:
其他好文 时间:
2014-10-13 15:26:20
阅读次数:
166
git init commit 等bug error:?src?refspec?master?does?not?match?any. 引起该错误的原因是,目录中没有文件,空目录是不能提交上去的 error:?insufficient?permission?for?adding?an?object?to?...
分类:
其他好文 时间:
2014-10-11 18:02:06
阅读次数:
239
问题:ORA-01045: user lacks CREATE SESSION privilege; logon denied解决方法:grant create session,resource to 或在pl/sql developer里,创建user时选择system privileges->c...
分类:
数据库 时间:
2014-10-09 23:24:47
阅读次数:
532
查看用户权限:SELECT host,user,password,Grant_priv,Super_priv FROM mysql.user;权限取决于最上一条记录的值如果需要收回权限:REVOKE ALL PRIVILEGES ON *.* FROM 'root'@'ip1';上面这条SQL将置G...
分类:
数据库 时间:
2014-10-09 00:53:47
阅读次数:
329
作为Ubuntu新手,想通过电脑创建WiFi,让手机可以连接上网。不下软件配置,其他电脑连接时显示(32)insufficient privilege 且手机连不上查了好久,一直找不到合适的方法,今天http://blog.csdn.net/gsls200808/article/details/39...
分类:
移动开发 时间:
2014-10-01 23:45:51
阅读次数:
234
??
一般是由于root用户对全局host无访问权限。因此只要给root用户添加一个访问权限即可。
解决办法:
登陆mysql ,执行
mysql -u root -pPasswd
mysql >grant all privileges on *.* to root@"%" identified by "Passwd"
mysql >flush privileges...
分类:
其他好文 时间:
2014-09-30 01:00:31
阅读次数:
167