https://www.cnblogs.com/charlieroro/p/9259675.html chroot命令 用来在指定的根目录下运行指令。chroot,即 change root directory (更改 root 目录)。在 linux 系统中,系统默认的目录结构都是以/,即是以根 ...
分类:
其他好文 时间:
2020-06-14 16:33:36
阅读次数:
90
一、查看 nginx 安装目录 ps -ef | grep nginx 二、查看配置文件 nginx.conf 路径 nginx -t 这条命令也可以用于检查配置文件是否正确。 当然也可以使用 find 命令进行文件查找 # 从 / 根目录下查找文件名为 nginx.conf 的文件find / - ...
分类:
系统相关 时间:
2020-06-14 13:16:23
阅读次数:
215
[ERROR] Failed to execute goal on project activiti-bpmn-layout: Could not resolve dependencies for project org.activiti:activiti-bpmn-layout:jar:6.0.1 ...
分类:
编程语言 时间:
2020-06-14 13:11:17
阅读次数:
300
环境 主机名 wanIP lanIP 服务 角色 m01 10.0.0.61 172.16.1.61 Ansible 控制端 backup 10.0.0.41 172.16.1.41 rsync服务端 被控端 web01 10.0.0.7 172.16.1.7 rsync客户端 被控端 web02 ...
分类:
其他好文 时间:
2020-06-14 01:20:41
阅读次数:
75
With highways available, driving a car from Hangzhou to any other city is easy. But since the tank capacity of a car is limited, we have to find gas s ...
分类:
其他好文 时间:
2020-06-14 01:10:06
阅读次数:
71
什么是流??? 流本身就是一个抽象的概念,当程序需要从某个数据源读入数据的时候,就会开启一个数据流,数据源可以是文件、内存或网络......流就是一组有序的数据序列 流的分类有哪些??? 1)按照流的方向 输入流:由外->内 输出流:由内->外 2)按照处理数据单位 字符流:char[] 字节流:b ...
分类:
其他好文 时间:
2020-06-13 21:41:59
阅读次数:
65
unittest单元测试框架不仅可以适用于单元测试,还可以适用WEB自动化测试用例的开发与执行,该测试框架可组织执行测试用例,并且提供了丰富的断言方法,判断测试用例是否通过,最终生成测试结果。今天笔者就总结下如何使用unittest单元测试框架来进行WEB自动化测试。 一、unittest模块的各个 ...
分类:
其他好文 时间:
2020-06-13 19:16:42
阅读次数:
40
Description Given a positive integer n, find the number of non-negative integers less than or equal to n, whose binary representations do NOT contain ...
分类:
其他好文 时间:
2020-06-13 17:32:34
阅读次数:
56
1.报错信息: org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: org.apache.ibatis.builder.IncompleteElementException: C ...
分类:
移动开发 时间:
2020-06-12 20:38:20
阅读次数:
80
How to delete a directory recursively with all its subdirectories and files in Java In this short article, you’ll learn how to delete a directory recu ...
分类:
其他好文 时间:
2020-06-12 14:30:22
阅读次数:
59