Linux常用命令 1、系统命令 runlevel # 查看当前的运行级别 systemctl status firewalld # 开启网络服务功能 stop # 关闭 restart # 重启 reload # 重载 reboot # 重启 halt # 关机 poweroff # 关机 2、查 ...
分类:
系统相关 时间:
2021-07-01 16:41:50
阅读次数:
0
1.show databases 展示所有数据库 2.建表 column : 列名 PK:唯一主键 NN:不能为空 AI:自动增加 3.修改删除表 4.使用库 5.屏蔽 -- 加空格 切近加空格 6.插入指定的表数据 常用的增删改查 和 模糊搜索 排序 对应下面demo即可 -- show tabl ...
分类:
数据库 时间:
2021-07-01 16:40:54
阅读次数:
0
作用 进入容器正在执行的终端 语法格式 docker attach [OPTIONS] CONTAINER options 说明 option 说明 --detach-keys 覆盖用于分离容器的键序列 --no-stdin 不要附加标准输入 --sig-proxy 所有接收到的信号代理到进程 实际 ...
分类:
其他好文 时间:
2021-07-01 16:31:37
阅读次数:
0
一、官方示例 地址:https://docs.locust.io/en/stable/quickstart.html#how-to-write-a-real-locust-file 二、安装Locust Windows系统安装locust: 直接通过 pip install locustio 命令安 ...
分类:
编程语言 时间:
2021-07-01 16:30:11
阅读次数:
0
#region 毫秒延时 界面不会卡死 public static void Delay(int mm) { DateTime current = DateTime.Now; while (current.AddMilliseconds(mm) > DateTime.Now) { Applicati ...
分类:
移动开发 时间:
2021-07-01 16:29:40
阅读次数:
0
0.引入驱动jar包 使用jdbc进行具体操作前,需要引入相关数据库的jar包, 或者使用mave管理依赖 <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> <dependency> <groupId>mys ...
分类:
数据库 时间:
2021-07-01 16:28:37
阅读次数:
0
mybatis和spring整合 需要jar包 1、spring 2、mybatis 3、mybatis和spring的整合包(下载地址:https://github.com/mybatis/spring) 3.1、下载只有maven工程源码,没有jar包 3.2、根据源码自己生成,导入maven工 ...
分类:
编程语言 时间:
2021-06-30 18:41:47
阅读次数:
0
Oracle数据泵expdp遭遇Streams AQ: Enqueue Blocked On Low Memory等待事件 版本:11.2.0.4.0 PSU+OJVM:11.2.0.4.201020 对数据库使用expdp做全库导出时,发现异常的慢。 每张小表的导出都要隔个几秒才会继续导出下一张表 ...
分类:
数据库 时间:
2021-06-30 18:38:34
阅读次数:
0
一、配置软件源1.1 运行命令: sudo gedit /etc/apt/sources.list1.2 在文件中加入软件源 清华源: deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe m ...
分类:
系统相关 时间:
2021-06-30 18:36:50
阅读次数:
0