daemon docker the connect

Maven-Introduction to the Dependency Mechanism | Maven实战--- dependencies与dependencyManagement的区别

Maven – Introduction to the Dependency Mechanism https://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#:~:text=The de ......

2002 - Can't connect to server on '54.xxx.xxx.xxx' (36)

远程连接mysql数据库的时候显示Can't connect to MySQL server (10060) 如下图所示 可以从以下几个方面入手,找出错误的原因: 1.网络问题 网络不通时会导致这个问题 检查下是不是能ping通 2.mysql账户设置 mysql账户是否不允许远程连接 -- mys ......
xxx 39 connect server 2002

docker初步入门学习安装redis和mysql

docker run --name myredis -p 6379:6379 -d redis redis-server --appendonly yes docker run --name mysql -e MYSQL_ROOT_PASSWORD=123456 -d -p 3306:3306 my ......
docker redis mysql

docker启动nacos 最新版本的命令如下

docker run \ --name nacos -d \ -p 8848:8848 \ --privileged=true \ --restart=always \ -e JVM_XMS=256m \ -e JVM_XMX=256m \ -e MODE=standalone \ -e PREFE ......
命令 版本 docker nacos

Mysql报错:too many connections原因及解决方法

原因是mysql连接数过多 解决方案一: 1、linux登录mysql: mysql -u root -p; 2、查看mysql允许的最大连接数 show variables like '%max_connections%'; 3、查看这次mysql服务启动到现在,同一时刻最多mysql有多少连接 ......
connections 原因 方法 Mysql many

docker 安装minio

创建目录 mkdir -p /docker/minio/data /docker/minio/config 拉取最新的 Portainer docker pull minio/minio 安装和启动 docker run -p 7000:9000 \ --net=host \ --name mini ......
docker minio

docker 部署 es + nginx

ES 安装 elasticsearch.yml cluster.name: "docker-cluster" node.name: "node-1" network.host: 0.0.0.0 discovery.seed_hosts: ["127.0.0.1"] cluster.initial_m ......
docker nginx es

Linux环境离线安装Docker&Docker镜像部署

引子 相信很多同学在项目上线的时候都会遇到没有网络的情况。一般而言,我们都会想到使用Docker 镜像部署,让我们看看搜索引擎给出来Docker的优势吧(如下图)。那么,问题来了,本身部署环境都没有网络,怎么离线安装Docker呢?怎么使用Docker镜像部署项目?OK,让我们开始吧。 一、Cent ......
Docker 镜像 环境 Linux amp

最新Docker搭建DVWA和SQLi-LABS漏洞练习平台

搭建DVWA DVWA是一款开源的渗透测试漏洞练习平台,内含XSS、SQL注入、文件上传、文件包含、CSRF和暴力破解等漏洞的测试环境。 可以在Docker Hub上搜索DVWA,有多个用户共享了搭建好的DVWA镜像(注意,有些镜像可能存在后门),此处选择镜像——sagikazarmark/dvwa ......
漏洞 SQLi-LABS Docker 平台 DVWA

The 2nd Universal Cup. Stage 3: Binjiang

比赛链接 没做完。 A. Almost Prefix Concatenation 给定字符串 \(S,T\)。称一个串是好的,当且仅当可以通过修改不超过一个字符使其成为 \(T\) 的前缀。 称一个把 \(S\) 划分成 \(n\) 个非空子串 \(S_1,S_2,\cdots,S_n\) 的方案是 ......
Universal Binjiang Stage The 2nd

React项目中报错:Parsing error: The keyword 'import' is reservedeslint

记得更改完配置后,要重启编辑器(如:VSCode)!!! 记得更改完配置后,要重启编辑器(如:VSCode)!!! 记得更改完配置后,要重启编辑器(如:VSCode)!!! 这个错误通常发生在你尝试在一个不支持 ES6 模块语法的环境中使用 import 关键字。 ESLint 默认使用的是 ES5 ......
中报 reservedeslint Parsing keyword 项目

Docker 安装Jenkins

1.首先拉取镜像 docker pull jenkins2.运行容器 docker run -p 8080:8080 -p 50000:50000 -v $(which docker):/usr/bin/docker -v jenkins_home:/var/jenkins_home -v /var ......
Jenkins Docker

研发提效必备技能:手把手教你基于Docker搭建Maven私服仓库

沉淀,成长,突破,帮助他人,成就自我。 大家好,我是冰河~~ 在研发的过程中,很多企业都会针对自身业务特点来定制研发一些工具类库,但是这些工具类库又不会对外公开,那如何在组织内部共享这些类库呢?一种很好的方式就是在公司内部搭建一套Maven私服仓库。 一、背景知识 搭建Maven私服仓库可以提高项目 ......
私服 仓库 技能 Docker Maven

docker 命令 报错device or resource busy

背景: docker-compose up -d 运行容器报错:failed to remove root filesystem for xxx: remove /var/lib/docker/devicemapper/mnt/xxx: device or resource busy 解决: (如果 ......
resource 命令 docker device busy

Nacos启动:[NACOS HTTP-POST] The maximum number of tolerable server reconnection errors has been reached

一、表象 二、分析 源码: public HttpRestResult<String> httpPost(String path, Map<String, String> headers, Map<String, String> paramValues, String encode, long re ......

Docker启动Nacos报错:Nacos Server did not start because dumpservice bean construction fail

一、表象 重启服务器之后Docker运行Nacos容器,启动成功,但是外网无法访问。 查看了一下Nacos启动日志(docker logs nacos容器名) 二、分析 很明显是数据库配``置问题。。如果是数据库配置的问题,可以着重检查以下信息尤其是MySQL内网Host,查询方式见Docker安装 ......

Docker系列---【Docker安装alist】

1.Docker安装alist命令 #这里是用的dockerdesktop,映射目录可以改成你自己的 docker run -di --restart=always -v e:/docker/alist/data:/opt/alist/data -p 5244:5244 -e PUID=0 -e P ......
Docker alist

使用Docker和Jenkin进行自动化测试、部署、回滚(2)

进行自动化测试需要maven-failsafe-plugin进行集成测试和maven-surefire-plugin进行运行单元测试, 引入exec-maven-plugin用来执行一些脚本。 failsafe & surefire <plugin> <!-- for unit test --> < ......
Docker Jenkin

Github Actions - Error: The connection to the server localhost:8080 was refused - did you specify the right host or port?

Run kubectl apply -f eks/aws-auth.yaml kubectl apply -f eks/aws-auth.yaml kubectl apply -f eks/deployment.yaml kubectl apply -f eks/service.yaml shell ......
connection the localhost Actions refused

Docker Alpine Linux 安装 Python3

参考文档:Docker Alpine Linux 安装 Pytho1、Dockerfile Dockerfile 文件一般包含基础镜像信息、维护者信息、镜像操作指令和容器启动时执行指令,’#’ 为 Dockerfile 中的注释。 参考文件::Docker 构建自定义镜像和Dockerfile文件 ......
Python3 Docker Alpine Python Linux

The Missing Semester of Your CS Education----shell工具和脚本

一.shell脚本 1.$的关键字 $0 - 脚本名 $1 到 $9 - 脚本的参数。 $1 是第一个参数,依此类推。 $@ - 所有参数 $# - 参数个数 $? - 前一个命令的返回值 $$ - 当前脚本的进程识别码 !! - 完整的上一条命令,包括参数。常见应用:当你因为权限不足执行命令失败时 ......
脚本 Education Semester Missing 工具

How can I do to protect the Environmental

How can I do to protect the Environmental Protecting the environment is an important responsibility that we all share. Here are some simple steps you ......
Environmental protect How can the

Why caused the dead factory?

The death of a factory can be caused by various factors, which can be broadly categorized into economic, social, and environmental reasons. Some of th ......
factory caused dead Why the

Should be the workers need to dress uniform for work?

The need for workers to dress in uniforms for work depends on the specific industry, company, and job role. In some cases, uniforms may be required fo ......
workers uniform Should dress need

Why the developed country choose the countries of southeast Asia to build processing factory used their labour force?

The developed countries choose countries in Southeast Asia to build processing factories and utilize their labor force for various reasons. Some of th ......
processing the developed countries southeast

ubuntu 安装 docker.

参考链接:https://zhuanlan.zhihu.com/p/651148141 检查卸载老版本docker $ sudo apt-get remove docker docker-engine docker.io containerd runc 更新软件包 sudo apt update s ......
ubuntu docker

An Introduction to Bioinformatics Algorithms, Neil C. Jones and Pavel Pevzner, the MIT Press, 2004.

An Introduction to Bioinformatics Algorithms, Neil C. Jones and Pavel Pevzner, the MIT Press, 2004. This introductory text offers a clear exposition o ......

B. Preparing for the Contest

原题链接 快速读题 给出一个序列,使其满足\(a[i]>a[i-1],i>1\)成立的次数恰好为k 思路 只要满足条件的序列都算作成立,我们就可以特殊化 先做出一个单增序列,由于前半部分所有元素都满足条件,所以前半部分保留(k+1)个元素,翻转后(n-k-1)个元素 但是sort默认升序,所以我们倒 ......
Preparing Contest for the

Idea集成docker插件完成镜像打包推送操作

一、配置Docker服务器 高版本的Idea默认已经集成了Docker插件,我们只需要按图配置好Docker服务器即可。因为dockerfile-maven-plugin插件的作用只是避免我们直接进行Docker操作,最终的镜像构建还得是docker服务器来完成,因此需要为插件指定Docker服务器 ......
插件 镜像 docker Idea

error: Your local changes to the following files would be overwritten by merge 解决方案

团队其他成员修改了某文件并已提交入库,你在pull之前修改了本地该文件,等你修改完代码再pull时,这时会报错如下错误 根据是否要保存本地修改,有以下两种解决方案 2.1 保留修改执行以下三条命令 git stash #封存修改 git pull origin master git stash po ......