出现此问题是端口被占用了,只需要关闭正在使用的端口就行 解决方法:1.在服务器中更改port端口号,改为不冲突,没有被占用的端口。 2.找出被占用的端口,结束被占用的端口: 解决结束被占用的端口的方法:1.输入命令查看被占用的端口的进程: netstat -aon|findstr 80 (80为要查 ...
分类:
Web程序 时间:
2021-01-20 12:16:34
阅读次数:
0
重定向 输出重定向 进程产生的信息,存放到文件中 标准正确输出: > 标准错误输出: 2> 标准混合输出: &> 输入重定向 < 以文本内容,作为进程的标准输入 FD简介 文件句柄是windows系统的概念,在linux下称之为文件描述符FD(file description) 进程使用文件描述符在 ...
分类:
其他好文 时间:
2021-01-20 12:03:22
阅读次数:
0
Error while trying to create admin user: Failed to connect to the database: An exception occurred in driver: SQLSTATE[HY000] [1130] Host '172.18.0.2' ...
分类:
其他好文 时间:
2021-01-19 12:03:11
阅读次数:
0
前言 pytest 运行完用例之后会生成一个 .pytest_cache 的缓存文件夹,用于记录用例的ids和上一次失败的用例。 方便我们在运行用例的时候加上--lf 和 --ff 参数,快速运行上一次失败的用例。 --lf, --last-failed 只重新运行上次运行失败的用例(或如果没有失败 ...
分类:
其他好文 时间:
2021-01-19 11:59:12
阅读次数:
0
CF1461B Find the Spruce 题目大意: 求指定类型图案的数量。 思路: 一个很巧妙的递推式。 注意从下往上进行递推。 Code: #include <bits/stdc++.h> using namespace std; const int N = 510; int n, m; ...
分类:
其他好文 时间:
2021-01-19 11:39:58
阅读次数:
0
6.文件查找 与搜索相关的命令常用的有whereis、which、find和locate。 whereis简单快速 whereis <关键词> whereis搜索很快,因为其并没有从硬盘中依次查找,而是直接从数据库中查询。缺点是只能搜索二进制文件(-b)、man帮助文件(-m)和源代码文件(-s)。 ...
分类:
系统相关 时间:
2021-01-18 11:07:41
阅读次数:
0
public class test11 { public static void main(String[] args) { int [][]grid={{1,0,0,0},{1,1,0,0}}; int [][]hits={{1,1},{1,0}}; int []result=hitBricks( ...
分类:
其他好文 时间:
2021-01-18 10:36:45
阅读次数:
0
NO.1 2个方法不同 SUBSTR(bc_ymd, 1, 6) 与 SUBSTR(bc_ymd,6) NO.2 游标的写法 ? CURSOR CR_TEST IS ? SELECT ? .... ? FROM ? ( ? ); --最后结尾要要有分号 ? NO.3 CASE WHEN 在查询条件中 ...
分类:
数据库 时间:
2021-01-18 10:35:03
阅读次数:
0
This time, you are supposed to find A×B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
其他好文 时间:
2021-01-16 12:09:45
阅读次数:
0
Tomcat启动报错如下: 解决方法: 1.双击打开tomcat设置页 2.勾选 Tips Tomcat设置修改完成后,ctrl+s保存 启动还报错,但不是上面得错使,我的Tomcat报\apache-tomcat-8.5.58\conf\Catalina\localhost目录下**.xml文件报 ...
分类:
其他好文 时间:
2021-01-16 11:59:39
阅读次数:
0