码迷,mamicode.com
首页 >  
搜索关键字:ora-01031: insufficient privileges    ( 702个结果
mysql开启远程连接权限
MySQL>update user set host = '%' where user = 'root'; MySQL>select host, user from user; MySQL>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY ...
分类:数据库   时间:2018-11-09 12:14:49    阅读次数:198
java.sql.SQLException: The user specified as a definer ('root'@'%') does not exist
权限问题,授权给 root 所有sql 权限 在Navicat for MySQL中按F6进入命令列界面 mysql> grant all privileges on *.* to root@"%" identified by "."; mysql> flush privileges; ...
分类:数据库   时间:2018-10-30 13:20:40    阅读次数:162
解决服务器连接错误Host ‘主机号’ is not allowed to connect to this MySQL server
进入mysql命令行,键入 grant all PRIVILEGES on 表名.* to '用户名'@'主机号' identified by '密码' WITH GRANT OPTION; 不写表名可替换成 * ; 执行成功会弹出下面这行语句 Query OK, 0 rows affected ( ...
分类:数据库   时间:2018-10-27 13:30:43    阅读次数:153
mysql修改root密码
1、如果知道root密码: mysql -u root -p 输入密码 use mysql; UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root'; FLUSH PRIVILEGES; quit; 2、如果不知道密码 s ...
分类:数据库   时间:2018-10-27 13:28:44    阅读次数:157
mysql 创建用户远程连接
GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%'IDENTIFIED BY 'mypassword' WITH GRANT OPTION; 如果是固定ip就这么写 grant all privileges on *.* to 'root'@'192.168.0. ...
分类:数据库   时间:2018-10-21 21:57:09    阅读次数:214
yum方式安装lnmp
1、安装mysql>>>yum -y install mariadb mariadb-server 给root用户设置密码 >>>mysqladmin -uroot password "pwd123" >>>grant all privileges on *.* to 'root'@'localho ...
分类:其他好文   时间:2018-10-20 16:15:42    阅读次数:155
MySQL 迁移并搭建主从(实践)
第一阶段 一、数据的初始化 1、老主库 关闭sql_log_binset sql_log_bin = off; 创建导出用户grant all privileges on *.* to 'dump'@'10.50.31.37' identified by 'rooT_258';grant all p ...
分类:数据库   时间:2018-10-18 18:05:02    阅读次数:169
navicat连接msql Client does not support authentication protocol requested by server; consider upgrading MySQL client
alter user 'root'@'localhost' identified with mysql_native_password by '****'; flush privileges; 进入权限后是 mysql-> 这样,输入上面的取修改密码 千万别忘了最后面的分号!!!! ;;; ...
分类:数据库   时间:2018-10-18 17:03:35    阅读次数:169
MySql实现远程访问配置
1、新建用户远程连接mysql数据库grant all on *.* to admin@'%' identified by '123456' with grant option; flush privileges;允许任何ip地址(%表示允许任何ip地址)的电脑用admin帐户和密码(123456) ...
分类:数据库   时间:2018-10-16 13:54:02    阅读次数:186
因为没有安装xcode,得不到xcode证书报错
Agreeing to the Xcode/iOS license requires admin privileges, please run “sudo xcodebuild -license” and then retry this command. xcode clone代码报错 ...
分类:其他好文   时间:2018-10-10 17:54:18    阅读次数:135
702条   上一页 1 ... 16 17 18 19 20 ... 71 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!