1. 配置双主: 双机名 win89.inno.com win88.inno.com 准备账号 SET SQL_LOG_BIN=0; set password for 'root'@'localhost'='123456'; grant all privileges on *.* to root@' ...
分类:
数据库 时间:
2021-01-18 11:43:38
阅读次数:
0
使用Navicat工具,进行远程授权登录 一、使用root用户登录到mysql mysql -u root -p 查询数据库 show databases; 使用mysql数据库(真正的数据库,而非数据库软件),将所有数据库的所有表(*.*)的所有权限(all privileges),授予通过任何i ...
分类:
数据库 时间:
2020-12-25 11:49:30
阅读次数:
0
在保证windows中cmd能ping通虚拟机地址时: 1、先登录进入到linux中的mysql 2、运行以下两个命令: 1)赋予远程登录的root用户所有权限 grant all privileges on *.* to 'root'@'%' identified by '密码' with gra ...
分类:
数据库 时间:
2020-12-15 12:47:33
阅读次数:
5
创建用户、授权用户 create user 'deploy' @'%' identified by '123456' 创建用户 grant select,insert,update,delete on * to deploy 授权用户 flush privileges 立即生效 远程登录设置 允许t ...
分类:
数据库 时间:
2020-12-09 12:14:30
阅读次数:
5
有时候我们会遇到这种情况(这种情况并不少见):用户schema中有很多对象,并且你想授权题用户访问这些表。你可以通过grant直接授权,但是当对象属主创建新的对象呢?你可能还需要再次授权,但是postgresql提供一个解决方案。 postgres=# create user a password ...
分类:
数据库 时间:
2020-11-08 16:43:59
阅读次数:
38
(一)MySQL有哪些权限MySQL的权限列表可以使用 show privileges 来查看,主要的权限信息如下: 这里我们根据作用域,把权限分为3类:1.MySQL服务管理权限:用于管理MySQL服务器的操作。这些权限是全局性的,授权范围不能是特定的数据库或对象。只能使用*.*方式授予,不能使用 ...
分类:
数据库 时间:
2020-09-18 01:28:53
阅读次数:
33
# 查看时区 show variables like '%time_zone%'; # 设置全局 set global time_zone='+8:00'; # 设置当前会话 set time_zone='+8:00'; # 立即生效 flush privileges; UTC是协调世界时(Univ ...
分类:
数据库 时间:
2020-07-28 14:43:56
阅读次数:
146
总是忘记,自己整理。 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' WITH GRANT OPTION; #开启mysql远程访问GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root"; #开启m ...
分类:
其他好文 时间:
2020-07-22 11:13:08
阅读次数:
81
* branch master -> FETCH_HEAD error: insufficient permission for adding an object to repository database .git/objects fatal: failed to write object fa ...
分类:
数据库 时间:
2020-07-18 22:35:47
阅读次数:
88
数据库(DataBase,简称DB) 一. 基本数据库操作命令 flush privileges 刷新数据库 show databases 显示所有数据库 use dbname 打开某个数据库 show tables 显示数据库mysql中所有的表 describe user 显示表mysql数据库 ...
分类:
数据库 时间:
2020-07-17 11:41:26
阅读次数:
93