登录mysql数据库 mysql -u root -p '你的密码' 查看user表 mysql> use mysql; mysql> select Host,User,Password from user; ERROR 1054 (42S22): Unknown column 'Password' ...
分类:
数据库 时间:
2021-05-24 03:47:36
阅读次数:
0
Master in Burp Suite - Tools Introductions(1) Introduction to Burp Proxy tab How to configure proxy and intercept request Deploy our target website - ...
分类:
其他好文 时间:
2021-05-24 03:33:58
阅读次数:
0
HAProxy通过固定参数balance指明对后端服务器的调度算法,该参数可以配置在listen或backend选项中。 HAproxy的调度算法分为静态和动态调度算法 官方文档:http://cbonte.github.io/haproxy-dconv/2.3/configuration.html ...
分类:
编程语言 时间:
2021-05-24 03:29:28
阅读次数:
0
1. 配置 配置全局的用户名:git config --global user.name "zhangyang0514" 配置全局的邮箱 :git config --global use.email "18109230755@163.com" 查看当前配置 :git config --list 如下 ...
分类:
其他好文 时间:
2021-05-24 03:25:28
阅读次数:
0
Spring配置 设置别名 //在配置文件中设置别名 <alias> <alias name="user" alias="myUser"/> //在测试类中使用设置的别名 User user= (User) applicationContext.getBean("myUser"); 标签配置 id ...
分类:
编程语言 时间:
2021-05-24 03:12:20
阅读次数:
0
XML配置 * beans.xml 配置class <!-- 使用Spring来创建对象,在Spring中这些都称为Bean Bean=对象 Hello hello = new Hello(); id=变量名 class=new的对象 property相当于对象的属性,给属性设置值 --> <bea ...
分类:
编程语言 时间:
2021-05-24 03:07:02
阅读次数:
0
覆盖索引 需要查询的值已经在索引里面包含了,就不需要查询数据行了。 mysql> explain select * from person1 where a like '%12%'; + + + + + + + + + + + + + | id | select_type | table | par ...
分类:
数据库 时间:
2021-05-24 03:06:44
阅读次数:
0
直接上代码吧 中间件简单使用: # -*- coding: utf-8 -*- # Define here the models for your spider middleware # # See documentation in: # https://docs.scrapy.org/en/lat ...
分类:
其他好文 时间:
2021-05-24 03:01:58
阅读次数:
0
一、介绍 如果数据都在容器中,容器已删除,数据都会丢失。容器之间可以有一个共享的技术。docker容器产生的数据,可以同步到本地。将容器内的目录,挂载到linux上面。 二、制作镜像 docker commit -m="提交信息" -a="作者" 容器id 目标镜像名:tag #制作镜像文件,tag ...
分类:
其他好文 时间:
2021-05-24 02:52:46
阅读次数:
0
端口复用 端口复用最常用的用途是: 防止服务器重启时之前绑定的端口还未释放 程序突然退出而系统没有释放端口 设置方法 int opt=1; setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,(const void*)&opt,sizeof(opt)); 注意事项 绑 ...
分类:
编程语言 时间:
2021-05-24 02:37:50
阅读次数:
0