https://blog.csdn.net/leoofchina1981/article/details/88967142 按照上述步骤安装了vc_redist.x64.msi,安装过程还是无法启动,按下图操作即可正常启动mongodb服务: ...
分类:
数据库 时间:
2020-03-25 23:06:33
阅读次数:
415
本地root连接mysql 显示错误 host '127.0.0.1' is not allowed to connect to this mysql server 登录数据库 mysql -u root -p use mysql grant all privileges on *.* to 'ro ...
分类:
数据库 时间:
2020-03-25 21:10:08
阅读次数:
73
解决mysql中只能通过localhost访问不能通过ip访问的问题 原因是没开权限 SELECT * FROM USER WHERE USER='root'; grant all privileges on *.* to 'root'@'%' identified by '123456';flus ...
分类:
数据库 时间:
2020-03-22 15:39:30
阅读次数:
72
1. 配置同步账号 create user 'sync'@'192.168.10.%' identified by 'sync'; grant replication slave on *.* to 'sync'@'192.168.10.%'; flush privileges; 2. 开启binl ...
分类:
数据库 时间:
2020-03-19 13:11:10
阅读次数:
67
问题:使用CONN / AS SYSDBA(注意空格)命令登录win10系统的Oracle11g数据库,失败,显示没有权限。 C:\Users\25836>SQLPLUS/NOLOG SQL*Plus: Release 11.2.0.1.0 Production on 星期三 3月 7 18:18: ...
分类:
数据库 时间:
2020-03-13 11:28:33
阅读次数:
114
刷新 flush privileges; 删除用户及权限 drop user 用户名@'%'; drop user gjh@'120.244.144.169'; 赋予权限 GRANT ALL PRIVILEGES ON *.* TO 'root'@'访问IP' IDENTIFIED BY '数据库密 ...
分类:
数据库 时间:
2020-03-11 23:26:31
阅读次数:
72
mysql> use mysql;Database changedmysql> grant all privileges on *.* to root@'%' identified by "password";Query OK, 0 rows affected (0.00 sec) mysql> f ...
分类:
数据库 时间:
2020-03-04 09:38:09
阅读次数:
78
安装node https://github.com/nodesource/distributions#installation-instructions-1 注意使用No root privileges方法安装 安装yarn curl --silent --location https://dl.y ...
分类:
Web程序 时间:
2020-03-02 22:36:50
阅读次数:
266
首先在本地使用root账户登录。(https://www.cnblogs.com/CUIT-DX037/p/12378586.html) 然后,执行以下语句: GRANT ALL PRIVILEGES ON 库名.表名 TO '用户名'@'远程IP' IDENTIFIED BY '访问密码' WIT ...
分类:
数据库 时间:
2020-02-28 20:21:48
阅读次数:
77
1. 今天刚装了mysql8.0.13,试着分配几个账号和权限,结果报错: 2. 查资料得知mysql8的分配权限不能带密码隐士创建账号了,要先创建账号再设置权限 输入命令: Grant all privileges on test.* to 'test'@'%'; 又报错: You are not ...
分类:
数据库 时间:
2020-02-28 11:40:10
阅读次数:
90