配置hive全分布模式时候,在mysql里面创建用户:create user ‘hive’ identified by ‘hive’;
然后给hive帐号分配所有权限:
grant all privileges on . on ‘hive’ with grant option;结果出现了Access denied for user ‘root’@’%’。后来我先创建数据库hive:create...
分类:
数据库 时间:
2015-06-04 15:43:11
阅读次数:
152
ip:更改或显示路由、IP、协议等信息iplink:接口管理show[DEVICE]:显示网卡接口信息set[DEVICE][up|down]:开启或关闭网络接口multicast[on|off]:开启或关闭组播ipaddr:协议地址管理ipaddr[show|flush][DEVICE]:显示或清空网卡设备信息例:ipaddrshowens33ipaddr[add|del]A..
分类:
系统相关 时间:
2015-06-02 18:11:28
阅读次数:
152
使用root用户 执行: ????grant select,insert,update,delete ?on projects.* to ‘test‘@‘%‘ identified by ‘test‘; 结果: ????ERROR 1044 (42000): Access denied for user ‘root‘@‘%‘ to database ‘...
分类:
数据库 时间:
2015-06-01 20:59:16
阅读次数:
149
一、设置数据库管理密码mysqladmin-hlocalhost-uroot-ppassword"新密码"*输入正确的旧密码新密码才能设置成功使用新密码登陆mysql-uroot-p654321二、修复数据库管理员密码servicemysqlstopservicemysqlstart--skip-grant-table[root@svr5mysql]#mysqlmysql>updatemysql.user..
分类:
数据库 时间:
2015-05-31 18:42:30
阅读次数:
129
1.mysql>use mysql;mysql>update user set host = '%' where user = 'root';mysql>select host, user from user;2.mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'...
分类:
数据库 时间:
2015-05-30 10:33:38
阅读次数:
108
1、腾讯云数据库配置1、考虑到安全性问题,,平常不使用root用户登录,新增一个用户名neil,用来管理项目的数据库a、首先登录root创建db_AA数据库b、在root用户下,创建neil用户,并对neil用户授权对db_AA数据库所有操作。GRANT ALL ON db_AA.* TO neil...
分类:
数据库 时间:
2015-05-29 23:01:36
阅读次数:
277
mysql优化:修改mysql的root账号的密码:先停止mysql服务:servicemysqldstop使用--skip-grant-tables忽略密码启动:mysqld_safe--skip-grant-tables&进入mysql修改密码:usemysqlupdateusersetpassword=password(‘mysql‘)whereuser=‘root‘;flushprivileges;查看表占用空间..
分类:
数据库 时间:
2015-05-29 18:28:42
阅读次数:
314
数据库授权 格式:grant select on 数据库.* to 用户名@登录主机 identified by "密码"例1、增加一个用户user001密码为123456,让他可以在任何主机上登录,并对所有数据库有查询、插入、修改、删除的权限。首先用以root用户连入MySQL,然后键入以下命令....
分类:
数据库 时间:
2015-05-29 17:25:44
阅读次数:
153
首先了解到一、 二一、(MySQL下创建用户并且赋予权限)root用户创建yong用户的SQL语句CREATE USER'yong'@'localhost'IDENTIFIED BY 'yong2022';GRANT USAGE ON * . * TO'yong'@'localhost'IDENTI...
分类:
数据库 时间:
2015-05-29 17:12:59
阅读次数:
127
后端同事出走后,需要在本地搭建java后端服务器环境,特记录以备忘
*** 安装mysql
- Mac 下自带了mysql
- 配置一下.bash_profile 方便调用
- 给一下权限 : "grant all privileges on *.* to 'root'@'127.0.0.1' identified by 'Passw0rd' with gr...
分类:
编程语言 时间:
2015-05-29 15:47:04
阅读次数:
202