1、 进入数据 mysql -u root -p ‘原来的密码’ //进入数据库中 2、 切换数据库 use mysql; 3、使用以下命令开启root用户远程访问权限: CREATE USER 'root'@'%' IDENTIFIED BY '你的密码'; GRANT ALL ON *.* TO ...
分类:
数据库 时间:
2021-06-15 18:39:53
阅读次数:
0
Linux 的文件权限与目录配置 在 Linux 里面,任何一个文件都具有『User, Group 及 Others』 默认的情况下: 所有的系统上的账号与一般身份使用者,还有那个 root 的相关信息,都是记录在/etc/passwd 这个文件内的。 个人的密码则是记录在/etc/shadow 这 ...
分类:
系统相关 时间:
2021-06-15 18:20:53
阅读次数:
0
配置mac zshrc的环境变量时犯了一个错误,我配置了多个export PATH, 结果只有一个PATH生效了,所以配置多个PATH是错误的; zshrc中环境变量配置如下: export ANDROID_HOME=/Users/xxx/configSoft/android-sdk export ...
分类:
系统相关 时间:
2021-06-15 18:18:32
阅读次数:
0
Less-20 基于错误的cookie头部POST注入首先从已知的条件中我们知道这又是一道“头部注入”,那么我们先输入正确的用户名和密码看一下登录成功是什么样子的: 回显有User-Agent、IP这样从当次Request直接获取的, 也有Cookie这样刷新页面后仍存在的, 还有登录用户的id、u ...
分类:
数据库 时间:
2021-06-15 17:51:06
阅读次数:
0
open SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, umode_t, mode) { ...... return do_sys_open(AT_FDCWD, filename, flags, mode); } l ...
分类:
其他好文 时间:
2021-06-15 17:45:08
阅读次数:
0
一、找到模板需要填写的位置 二、可填写的参数如下: # {PROJECT_NAME} - -当前项目的名称 # {NAME} - --新文件名称 # {USER} - -当前用户的登录名 # {DATE} - -当前的系统日期 # {TIME} - -当前系统时间 # {YEAR} - -年 # { ...
分类:
其他好文 时间:
2021-06-13 10:47:52
阅读次数:
0
使用jpa时,我们需要继承至JpaRepository 继承之后,可以写HQL或者通过方法名自动生成SQL语句 生成SQL语句时JPA中的常用关键字 And 等价于 SQL 中的 and 关键字, 比如 findByUsernameAndPassword(String user, String pw ...
分类:
其他好文 时间:
2021-06-13 10:29:36
阅读次数:
0
mysql-索引 21.6.12【索引的分类】 单列索引:索引加在一个列上 普通索引(normal): alter table user add index `name`(`name`) 唯一索引(unique): alter table user add unique index `code`(` ...
分类:
数据库 时间:
2021-06-13 10:24:21
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
Rsync+Notify: yum install make gcc gcc-c++ 客户端启动rsync port:873/usr/local/rsync/bin/rsync --daemon --config=/usr/local/rsync/rsync.conf Client:tar xf r ...
分类:
其他好文 时间:
2021-06-13 09:26:06
阅读次数:
0