容器(k8s & docker)
docker kubernetes
Lubin技术分享
每多学一点知识,就可以少写几行代码。
展开
-
容器报错——Cannot find OpenSSL s evp h libevent
今天在制作一个 php 7.2的容器的时候,遇到了这个错误。configure: error: Cannot find OpenSSL's <evp.h> libevent发生在安装 libevent 这一步骤。找了很多答案都没有用。可能和我用的 debian stretch 版本有关。apt-get remove opensslcurl https://www.openss...原创 2019-03-08 16:52:10 · 602 阅读 · 0 评论 -
Docker容器内不能联网的种解决方案
参考网上文章,最后这个办法解决了我的问题:重建docker0网络pkill dockeriptables -t nat -F#没有ifconfig就安装一下 yum install net-toolsifconfig docker0 down#下面这一步可以跳过brctl delbr docker0docker -d...原创 2018-12-12 11:43:44 · 2384 阅读 · 1 评论 -
记录一次 docker:Primary script unknown" while reading response header from upstream
这个问题简单翻译过来就是:fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;这行配置无法帮我找到 传过来的文件。试了一下写一个 index.html 文件进行测试,发现是有的。然而,index.php就不行。这要是在以往的无docker时代,文件目录不用挂载来挂载去的,就不容易出现这种问题。于是检查了一下doc...原创 2018-11-04 18:14:17 · 3628 阅读 · 2 评论 -
debian7 安装了docker以后无法使用
一开始安装docker,装不了。然后apt-get install docker-ce。安装docker-compose 时,安装的是官方推荐的sudo curl -L“https://github.com/docker/compose/releases/download/1.22.0/docker-compose-(uname−s)−(uname-s)-(uname−s)−(unam...原创 2018-10-30 16:41:15 · 676 阅读 · 0 评论 -
使用docker-compose时出现 Interactive shell
使用docker-compose起不来一个php-fpm容器,代码如下:php_wordpress: image: daocloud.io/library/php:7.2.8-alpine3.6 container_name: php_wordpress ports: - "9000:9000" volumes: - /wwwroot/code:/var/w...原创 2018-08-11 15:29:27 · 5529 阅读 · 0 评论 -
配置 Docker 加速器
配置云主机的知识点清单:1、配置ssh免密码登陆 2、yum install docker 3、将docker配置一个daocloud加速器原创 2017-03-18 10:27:11 · 1105 阅读 · 0 评论 -
docker的php容器安装 memcached
docker的php容器安装 memcached下载地址是在这里:https://launchpad.net/libmemcached/+downloadcurl -O https://launchpadlibrarian.net/165454254/libmemcached-1.0.18.tar.gz cd libmemcached-1.0.18 tar -xvzf libmemcached-原创 2016-07-10 00:05:26 · 3696 阅读 · 0 评论 -
随便写给phper的docker入门手册
怕有不少外链会被csdn删文,于是放到了有道云笔记:http://note.youdao.com/yws/public/redirect/share?id=7c6d6c1f0af09082ab8b859ac7ba919f&type=false-------------------还是贴一下:服务器centos7一些资料1dock...原创 2016-06-30 00:06:07 · 1575 阅读 · 0 评论 -
ubuntu下安装docker遇到的坑
按照官网的教程: https://docs.docker.com/engine/installation/linux/ubuntulinux/ 使用 sudo apt-get upgrade 后, 提示:有一个新的grup程序,但是当前的grub被改写过。问要不要修改。大致是这样的。然后第一次安装的时候,我确认了。但是随之而来的是一直报错:kdump-tools的错。 在一个新的镜像里,选原创 2016-05-17 20:29:09 · 2016 阅读 · 0 评论 -
find: ‘cd’: No such file or directory
使用docker-compose 的时候,如果想在docker-compose.yml 里加上:command : cd ....运行时大多会报:find: ‘cd’: No such file or directory我的做法是把要执行的命令写在一个bash文件,然后把command写成:command: /bin/bash /webxxx/xxx/runxxx.sh再使用 docker-compose up -d 命令,就可以运行起来了。...原创 2020-10-22 00:53:57 · 1122 阅读 · 0 评论