上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 232 下一页
摘要: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName解决办法非常简单:root@raspberrypi:/etc/apache2# vi 阅读全文
posted @ 2022-11-22 17:08 牧之丨 阅读(3128) 评论(0) 推荐(0)
摘要: 1.下载安装包,需要下面3个安装包[root@bes2 apache]# ll总用量 8520-rw-r--r--. 1 root root 1020833 9月 18 17:47 apr-1.5.1.tar.gz-rw-r--r--. 1 root root 874462 9月 18 17:48 阅读全文
posted @ 2022-11-22 16:34 牧之丨 阅读(398) 评论(0) 推荐(0)
摘要: https://www.gnu.org/software/libtool/ ./configure --prefix=/usr/local/libtool make sudo make install https://apr.apache.org/download.cgi ./configure - 阅读全文
posted @ 2022-11-22 16:33 牧之丨 阅读(129) 评论(0) 推荐(0)
摘要: 问题描述:mysql版本:5.7.27jdk版本:1.8.0_201 tomcat日志中报错,显示连接数据库失败,报错信息如下: The last packet successfully received from the server was 152 milliseconds ago. The l 阅读全文
posted @ 2022-11-21 16:56 牧之丨 阅读(1206) 评论(0) 推荐(0)
摘要: 参考: http://stackoverflow.com/questions/1260748/how-do-i-remove-a-submodule 1. Delete the relevant section from the .gitmodules file.2. Stage the .gitm 阅读全文
posted @ 2022-11-21 16:56 牧之丨 阅读(94) 评论(0) 推荐(0)
摘要: docker run :创建一个新的容器并运行一个命令 语法 docker run [OPTIONS] IMAGE [COMMAND] [ARG...] OPTIONS说明: -a stdin: 指定标准输入输出内容类型,可选 STDIN/STDOUT/STDERR 三项; -d: 后台运行容器,并 阅读全文
posted @ 2022-11-21 16:55 牧之丨 阅读(158) 评论(0) 推荐(0)
摘要: 一、操作tar包1、save和load命令save命令 docker save [options] images [images...]示例 : docker save -o nginx.tar nginx:latest 或 docker save > nginx.tar nginx:latest 阅读全文
posted @ 2022-11-21 16:54 牧之丨 阅读(2075) 评论(0) 推荐(0)
摘要: docker-compose.yml 结构 docker-compose.yml文件分为三个主要部分:services、networks、volumes.。services主要用来定义各个容器。networks定义需要使用到的network.。volumes定义services使用到的volume 阅读全文
posted @ 2022-11-21 16:52 牧之丨 阅读(1887) 评论(0) 推荐(0)
摘要: CMD 和 ENTRYPOINT 指令都是用来指定容器启动时运行的命令。单从功能上来看,这两个命令几乎是重复的。单独使用其中的一个就可以实现绝大多数的用例。但是既然 doker 同时提供了它们,为了在使用中不至于混淆,本文试图把它们的用法理清楚。 exec 模式和 shell 模式 CMD 和 EN 阅读全文
posted @ 2022-11-21 15:51 牧之丨 阅读(309) 评论(0) 推荐(0)
摘要: 参考出处很多著名库的 Dockerfile 文件中,通常都是 ENTRYPOINT 字段会是这样: ENTRYPOINT ["docker-entrypoint.sh"]这里我们参考分析下 MySQL 的 Dockerfile 文件,来认识下 docker-entrypoint.sh 的用处。 My 阅读全文
posted @ 2022-11-21 14:49 牧之丨 阅读(1436) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 232 下一页