还是5.7.29,还是CentOS 7 二进制包安装MySQL 一、下载 安装依赖包 yum install ncurses-devel.x86_64 libaio.x86_64 -y 下载MySQL二进制包 方法一:使用wget命令直接下载 wget https://downloads.mysql ...
分类:
数据库 时间:
2021-06-02 12:51:22
阅读次数:
0
1、 #include <stdio.h> #define NUMBER 5 int main(void) { char str[NUMBER][128]; int i; for(i = 0; i < NUMBER; i++) { printf("str[%d] = ", i); scanf("%s ...
分类:
编程语言 时间:
2021-06-02 12:43:03
阅读次数:
0
springboot相关的配置信息: server.tomcat.max-connections = 2000 server.tomcat.accept-count = 100 server.tomcat.max-threads = 200 上面三个配置理解请看:https://www.cnblog ...
分类:
编程语言 时间:
2021-06-02 12:39:50
阅读次数:
0
前期准备 docker环境... 0_镜像_查询 [root@iZ2zeca7jric8sx4f3n7spZ ~]# docker search elasticsearch NAME DESCRIPTION STARS OFFICIAL AUTOMATED elasticsearch Elastic ...
分类:
其他好文 时间:
2021-06-02 12:27:50
阅读次数:
0
let num = 12345678.002345 let start = (num + '').split('.')[0].split('').reverse() let end = (num + '').split('.')[1] let s = '',cur = '',n = start.le ...
分类:
其他好文 时间:
2021-06-02 12:21:53
阅读次数:
0
1.将抓包到的request请求内容复制到一个文本文件 扫描接口是否有注入漏洞: sqlmap.py -r C:\Users\qiuro\Desktop\sqlmap.txt 查询对应的库名: sqlmap.py -r C:\Users\qiuro\Desktop\sqlmap.txt -dbs 2 ...
分类:
数据库 时间:
2021-06-02 11:55:15
阅读次数:
0
1 、提示某某列不对如下图: 表示数据库中的表里面没有以下四个字段, 列名 'JobUser_WorkYears_4143_Guid' 无效。 列名 'JobUser_WorkYears_4143_Name' 无效。 列名 'JobUser_SchoolNature_4144_Guid' 无效。 列 ...
分类:
数据库 时间:
2021-06-02 11:46:26
阅读次数:
0
Laya 自制框架之事件管理器 @author ixenos 2021年5月26日 1 package framework.manager 2 { 3 import framework.event.FrameworkEvent; 4 5 import laya.events.EventDispatc ...
分类:
其他好文 时间:
2021-06-02 11:40:25
阅读次数:
0
DWORD GetTickCount(void); 1) 定义 For Release configurations, this function returns the number of milliseconds since the device booted, excluding any ti ...
分类:
其他好文 时间:
2021-06-02 11:21:18
阅读次数:
0
git 回滚操作 自己写了代码想要回滚,之前自己的方法太耽误时间了,同事教了一个方法可以快速回滚 第一部分:回滚:点击history-->Version Control-->log 同时选中两个版本--> 2、然后回滚; 第二部分提交区 git 有四个区域,1、编辑区,2、暂存区 3、待提交区 4、 ...
分类:
其他好文 时间:
2021-06-02 11:02:07
阅读次数:
0