创建用户: 命令: 1 CREATE USER 'username'@'host'IDENTIFIED BY 'password'; 1 CREATE USER 'username'@'host'IDENTIFIED BY 'password'; 说明:username – 你将创建的用户名, ho ...
分类:
数据库 时间:
2018-11-24 22:24:45
阅读次数:
241
1创建账号授权 grant all privileges on jenkinsddbes.* to 'jenkinsddbes'@'%' identified by '1iN@Da12tA&*ba33gf8'; 2、导出 mysqldump -u root -p jenkinsddbes > 201 ...
分类:
数据库 时间:
2018-11-24 14:17:56
阅读次数:
528
django-1.11) F:\crm>python manage.py makemigrationsSystemCheckError: System check identified some issues: ERRORS:auth.User.groups: (fields.E304) Rever ...
分类:
数据库 时间:
2018-11-23 21:04:34
阅读次数:
1104
1.打开mysql cmd 2.执行语句 ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #修改加密规则 ALTER USER 'root'@'localhost' IDENTIFIED WI ...
分类:
数据库 时间:
2018-11-21 15:37:22
阅读次数:
150
创建目标数据库连接DBLINKcreate database link testdblink connect to xxx identified by "xxx"using '(DESCRIPTION =(ADDRESS_LIST =(ADDRESS =(PROTOCOL = TCP)(HOST = ...
分类:
数据库 时间:
2018-11-15 22:24:36
阅读次数:
255
用户创建 create user 'user01'@'%' identified by 'user01'; select host,user,authentication_string from mysql.user where user='user01';+ + + +| host | user ...
分类:
数据库 时间:
2018-11-13 11:06:12
阅读次数:
211
https://blog.csdn.net/qq_38265784/article/details/80915098 use mysql; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码'; FL ...
分类:
数据库 时间:
2018-11-11 16:53:28
阅读次数:
176
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
alter user 'root'@'%' identified by 'xxxx'; alter user 'root'@'localhost' identified by 'xxxx';root@后面是user表的Host字段的内容,新安装默认是localhost,我这增加了远程访问,将loca ...
分类:
数据库 时间:
2018-11-04 12:48:11
阅读次数:
186
1. 检查sshd服务的状态以及端口是否正常, 如下为正常状态 sudo netstat -nlp | grep :22 henry@henry-Latitude-D430:~$ netstat -nlp | grep 22(Not all processes could be identified ...
分类:
系统相关 时间:
2018-11-03 14:14:30
阅读次数:
541