1:进入cmd2:命令:mysql -u root mysql -p 回车输入密码:3:use mysql;4:命令:update user set password=password('新密码') where user='root'; //最后分号不要丢5:命令:flush privileges....
分类:
数据库 时间:
2014-07-16 23:20:34
阅读次数:
260
1.安装GCC: yum -y install gcc-c++2.安装flex: yum -y install flex 没有flex,直接安装libpcap会提示"Your operating system's lex is insufficient to compile libpcap"错误;3...
分类:
其他好文 时间:
2014-07-03 12:55:49
阅读次数:
1713
cd /usr/local/mysql/bin/grant all privileges on *.* to 'root'@'%' identified by '12345678';flush privileges;grant select on weixin.wx_tuijian to 'bbc....
分类:
数据库 时间:
2014-07-02 17:55:37
阅读次数:
229
Mysql默认关闭远程登录权限,如下操作允许用户在任意地点登录: 1. 进入mysql,GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '' WITH GRANT OPTION; IDENTIFIED BY后跟的是密码,可设为空。 .....
分类:
数据库 时间:
2014-07-01 19:47:00
阅读次数:
253
Execution Plan----------------------------------------------------------ERROR:ORA-01039: insufficient privileges on underlying objects of the viewSP2-...
分类:
其他好文 时间:
2014-07-01 19:43:46
阅读次数:
298
debian wheezy 升级后, 因为授权错误, 导致密码给修改, 在debian的mysql safe下也无法进入.
我在/etc/mysql/my.cnf 里面已经修改了bind-address 为局域网ip
进而执行了
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTI...
分类:
数据库 时间:
2014-07-01 16:03:03
阅读次数:
207
1、解决客户端联不上MySQL服务器的问题: GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '' WITH GRANT OPTION; FLUSH PRIVILEGES;2、登陆MySQL: mysql -u root -p 12.....
分类:
数据库 时间:
2014-06-28 17:32:04
阅读次数:
245
MYsql权限管控系统包括2个方面:1.检查用户是否可以连接2.检查用户是否具有所执行动作的权限MYSQL 权限层级:1.全局层2.数据库层3.表层级4.列层级5.子程序层级授权命令:GRANT ALL PRIVILEGES ON 层级 TO 用户名@主机 IDENTIFIED BY 密码;(被授权...
分类:
数据库 时间:
2014-06-27 13:08:21
阅读次数:
237
今天升级一个10g的集群环境到10.2.0.5,网上下载补丁包p8202632_10205_Linux-x86-64.zip,解压后安装执行,中途报错:
I/O ERROR cannt reading or opening file in /tmp/...../temp52
网上查资料如下:
根据MOS的说明,导致这个错误可能有如下原因:
a) Insufficient f...
分类:
数据库 时间:
2014-06-27 09:06:41
阅读次数:
267
默认情况下是不允许在远程登录mysql数据库的使用一下命令可以改变现状://更改登录规则,把所有的权限都给root这个账户,%是指在任何地方都可以登录,‘123456789’是登录密码grant all privileges on *.* to 'root'@'%' identified by '1...
分类:
数据库 时间:
2014-06-22 23:42:28
阅读次数:
248