1.问题:docker : Error response from daemon: Conflict. The container name "***" is already in use原因:容器名占用解决办法:(1)给容器换一个名字, 比如说 docker run -it --name=myce ...
分类:
其他好文 时间:
2020-07-15 23:57:58
阅读次数:
96
报错产生的原因 1.重复启动tomcat造成8080端口的冲突 2.其他软件占用了8080端口 解决方案 打开/tomat/bin目录,通过命令强制关闭他 其他软件占用8080,那么需要打开server.xml文件,然后修改tomcat的默认端口号,一般在是service.xml文件当中的65行 注 ...
分类:
其他好文 时间:
2020-07-14 00:53:32
阅读次数:
77
编写脚本文件 #!/bin/bash #chkconfig: 22345 10 90 #description: Start and Stop redis REDISPORT=6379 EXEC=/usr/local/soft/redis5/bin/redis-server CLIEXEC=/usr ...
分类:
其他好文 时间:
2020-07-14 00:34:31
阅读次数:
331
提高篇目中,会不断遇到sinx、cosx、tanx这些函数,间断点的个数可能会有无限多个,此时处理手法需要更加谨慎! 1、间断点定义 详细点介绍如下: 方便记忆如下: 2、有限个间断点 遇到ex、arctanx、arccotx一定小心! 遇到绝对值一定小心! 有时需要一些三角函数的基础知识! 3、无 ...
分类:
其他好文 时间:
2020-07-11 18:58:56
阅读次数:
79
Announcements - This repository provides references to recent advances in autoencoders (AEs), and will be updated once every month with the hope of ex ...
分类:
Web程序 时间:
2020-07-09 00:54:07
阅读次数:
85
@EnableWebSecurity public class seccurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Ex ...
分类:
编程语言 时间:
2020-07-08 20:07:45
阅读次数:
48
背景想重新创建一个之前已经从文件资源管理器删掉的项目进行练习,提示Failed to create maven project:'.../pom. xml"already exists in VFS 解决步骤用 IDEA 打开一个任意可以打开的项目;选择 File->Invalidate Cache ...
分类:
其他好文 时间:
2020-07-07 13:27:21
阅读次数:
57
打开zookeeper集群之后,zk正常,但是kafka启动之后总是会挂掉,查找logs日志里的server.log文件发现问题: 问题:A broker is already registered on the path /brokers/ids/0. This probably indicate ...
分类:
其他好文 时间:
2020-07-05 15:07:11
阅读次数:
103
今天在Ubuntu系统中,需要在同一个系统的两个不同VNC窗口中分别开启Firefox,可是被报错了,如下图所示 ?Firefox报错信息 Firefox is already running, but is not responding. To open a new window,you must ...
分类:
系统相关 时间:
2020-07-04 22:27:00
阅读次数:
122
交换两个变量值 def ex_1(a,b): a,b = b,a return a,b def ex_2(a,b): c = b b = a a = c return a,b if __name__ == '__main__': print(ex_1(1,2)) print(ex_2(1,2)) 删 ...
分类:
编程语言 时间:
2020-07-04 20:50:27
阅读次数:
76