环境说明: 最近新装的系统启动docker报错,之前没有遇到过.(之前都是系统直接启动,新装机器无报错的情况) 当时排查了很久没找到问题在哪,观察报错信息如下: 提示表文件失败,没有这个文件或者目录. 解决方法: 百度了下这个错误,这个错误的需要注意的是后边提到了mkfs这里,最后找到了是xfsprogs这个版本太低了. yum update xfsprogs 参考连接: https://www.cnblogs.com/FoChen/p/8708932.html 查看系统日志 =========…
安装报错: Transaction check error:  file /usr/lib/systemd/system/blk-availability.service from install of device-mapper-7:1.02.107-5.el7_2.1.x86_64 conflicts with file from package lvm2-7:2.02.105-14.el7.x86_64  file /usr/sbin/blkdeactivate from install…
error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.37/version: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect.…
如果gitlab runner使用docker,docker是普通配置,配置好后,runner就可以正常执行任务了. 另外一个环节Docker配置了tls加密连接,添加runner后,runner的配置tls_verify 字段值为true: tls_verify = true 执行任务时则会报错: ERROR: Preparation failed: error during connect: Get https://127.0.0.1:2376/v1.25/info: x509: certi…
解决centos7下 selenium报错--unknown error: DevToolsActivePort file doesn't exist 早上在linux下用selenium启动Chrome时出现问题: 报错: Traceback (most recent call last): File "get2.py", line 62, in <module> browser = webdriver.Chrome() File "/root/.pyenv/v…
1.启动docker报错: # service docker stop Stopping docker: [ OK ] [root@RSING data2]# service docker start Starting cgconfig service: Error: cannot mount cpuset to /cgroup/cpuset: Device or resource busy /sbin/cgconfigparser; error loading /etc/cgconfig.co…
在同步本地文件到线上仓库的时候 报错 pre -commit hook failed (add --no-verify to bypass) 当你在终端输入git commit -m "xxx",提交代码的时候, pre-commit(客户端)钩子,它会在Git键入提交信息前运行做代码风格检查. 如果代码不符合相应规则,则报错. 虽然会提示add --no-verify,输入 git commit -m "xxx" --no-verify 绕过验证,强制提交.但是不…
前言 本篇博客将把docker错误都进行整合,方便大家进行查看,如果各位同学有遇到docker使用中遇到的报错,也可以把报错信息截图和处理办法微信发我. docker报错 1. 拉取镜像显示被拒绝 2.docker中安装centos无法使用systemctl命令管理进程 ############################################################################ docker报错处理方法 1.拉取镜像显示被拒绝 报错信息 [root@k…
docker报错Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? 解决办法$ systemctl daemon-reload$ sudo service docker restart$ sudo service docker status (should see active (running))$ sudo docker run hello-worl…
ssh 报错Host key verification failed  或Ubuntu connect to serve 失败  通常是因为没有装ssh sudo apt-get install  openssh-server 就可以了,但是我这边是因为之前连上了,后面远程服务器改了密码, 之前保存的密码验证失败,这时候就要把保存的密码删掉,哪里删掉??? 用Ubuntu connect to serve 就直接报错,用ssh就报下面的错, ssh xxx@xxx.xxx.xxx.xxx @@@…