docker compose一键部署lnmt环境

创建docker compose 目录

[root@localhost ~]#  mkdir -p /compose_lnmt

编写nginx的dockerfile文件

创建目录

[root@localhost compose_lnmt]# mkdir -p nginx

编写nginx配置文件

[root@localhost nginx]# vim nginx.conf

user  root;         #运行身份#nginx自动设置进程数量
worker_processes  auto;#指定错误日志文件的位置和日志级别。在此示例中,错误日志被记录到logs/error.log文件中,并且只记录信息级别的日志。
error_log  logs/error.log  info;pid        logs/nginx.pid; events {use epoll; 
}#定义了HTTP模块相关配置。
http {#引入mime.types文件,用于定义MIME类型映射。include       mime.types;#设置默认MIME类型为application/octet-stream。default_type  application/octet-stream;#定义日志格式。log_format  main '$remote_addr - $remote_user [$time_local] "$request" ''$status $body_bytes_sent "$http_referer" ''"$http_user_agent" "$http_x_forwarded_for"';# 配置访问日志文件路径和格式。access_log logs/access.log main;sendfile        on;                    #开启sendfile功能以提高文件传输效率。keepalive_timeout  65;                 #设置keepalive连接超时时间为65秒。upstream tomcat_8080 {                  # 定义了名为tomcat_8080的upstream组,并指定两个后端服务器地址和端口号。server tomcat1:8080; server tomcat2:8080;}
#定义了一个虚拟主机配置,监听80端口,并设置代理转发规则。server {listen 80;server_name localhost;location ~  / {proxy_pass http://tomcat_8080;proxy_set_header Host $host;proxy_set_header X-Real-IP $remote_addr;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;# When setting up Harbor behind other proxy, such as an Nginx instance, remove the below line if the proxy already has similar settings.proxy_set_header X-Forwarded-Proto $scheme;proxy_buffering off;proxy_request_buffering off;}}
}

 

[root@localhost nginx]# vim Dockerfile

#基于的基础镜像
FROM centos:7
#
##镜像作者信息
MAINTAINER Crushlinux <crushlinux@163.com>
#
##安装相关依赖包
RUN yum install -y wget proc-devel net-tools gcc zlib zlib-devel make openssl-devel
#
##下载并解压nginx源码包
RUN wget http://nginx.org/download/nginx-1.19.0.tar.gz && tar zxf nginx-1.19.0.tar.gz
##编译安装nginx
RUN cd nginx-1.19.0 && ./configure --prefix=/usr/local/nginx && make && make install 
ENV PATH /usr/local/nginx/sbin:$PATH
#
##开启 80 和 443 端口
EXPOSE 80
#
##修改 Nginx 配置文件,以非 daemon 方式启动
#RUN echo "daemon off;">>/usr/local/nginx/conf/nginx.conf
#
##定义时区
#RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
#
#复制服务启动脚本并设置权限
#ADD run.sh /run.sh
#RUN chmod 775 /run.sh
ENTRYPOINT ["nginx"]
CMD ["-g","daemon off;"]

创建数据存放目录

[root@localhost compose_lnmt]# mkdir -p /var/www/html/

编写tomcat的dockerfile

[root@localhost compose_lnmt]# mkdir -p tomcat

[root@localhost compose_lnmt]# cd tomcat/

下载安装包

[root@localhost tomcat]#  wget http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

--2023-08-04 16:37:12--  http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

正在解析主机 www.oracle.com (www.oracle.com)... 23.202.224.60, 2600:1417:76:798::a15, 2600:1417:76:7a0::a15

正在连接 www.oracle.com (www.oracle.com)|23.202.224.60|:80... 已连接。

已发出 HTTP 请求,正在等待回应... 301 Moved Permanently

位置:https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html [跟随至新的 URL]

--2023-08-04 16:37:13--  https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

正在连接 www.oracle.com (www.oracle.com)|23.202.224.60|:443... 已连接。

已发出 HTTP 请求,正在等待回应... 301 Moved Permanently

位置:https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html [跟随至新的 URL]

--2023-08-04 16:37:15--  https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html

正在连接 www.oracle.com (www.oracle.com)|23.202.224.60|:443... 已连接。

已发出 HTTP 请求,正在等待回应... 301 Moved Permanently

位置:./downloads/#java8 [跟随至新的 URL]

--2023-08-04 16:37:16--  https://www.oracle.com/java/technologies/javase/downloads/

再次使用存在的到 www.oracle.com:443 的连接。

已发出 HTTP 请求,正在等待回应... 301 Moved Permanently

位置:https://www.oracle.com/java/technologies/javase-downloads.html [跟随至新的 URL]

--2023-08-04 16:37:16--  https://www.oracle.com/java/technologies/javase-downloads.html

再次使用存在的到 www.oracle.com:443 的连接。

已发出 HTTP 请求,正在等待回应... 301 Moved Permanently

位置:./downloads/ [跟随至新的 URL]

--2023-08-04 16:37:17--  https://www.oracle.com/java/technologies/downloads/

再次使用存在的到 www.oracle.com:443 的连接。

已发出 HTTP 请求,正在等待回应... 200 OK

长度:未指定 [text/html]

正在保存至: “jdk8-downloads-2133151.html”

    [   <=>                                                        ] 112,559      137KB/s 用时 0.8s   

2023-08-04 16:37:18 (137 KB/s) - “jdk8-downloads-2133151.html” 已保存 [112559]

[root@localhost tomcat]#    wget http://tomcat.apache.org/

--2023-08-04 16:37:33--  http://tomcat.apache.org/

正在解析主机 tomcat.apache.org (tomcat.apache.org)... 151.101.2.132, 2a04:4e42::644

正在连接 tomcat.apache.org (tomcat.apache.org)|151.101.2.132|:80... 已连接。

已发出 HTTP 请求,正在等待回应... 301 Moved Permanently

位置:https://tomcat.apache.org/ [跟随至新的 URL]

--2023-08-04 16:37:37--  https://tomcat.apache.org/

正在连接 tomcat.apache.org (tomcat.apache.org)|151.101.2.132|:443... 已连接。

已发出 HTTP 请求,正在等待回应... 200 OK

长度:17702 (17K) [text/html]

正在保存至: “index.html”

100%[=============================================================>] 17,702       113KB/s 用时 0.2s   

2023-08-04 16:37:38 (113 KB/s) - 已保存 “index.html” [17702/17702])

下载tomcat的dockers文件

https://mirrors.bfsu.edu.cn/apache/tomcat/tomcat-8/v8.5.59/bin/apache-tomcat-8.5.59.tar.gz

如果这一步做了下面就不用了

这里上一步做了     就可以跳过

在tomcat目录下放一个apache包

[root@localhost tomcat]# ll
总用量 9600
-rw-r--r--. 1 root root 9690027 7月  17 2020 apache-tomcat-8.5.40.tar.gz

[root@localhost tomcat]# vim Dockerfile

[root@localhost tomcat]# cat Dockerfile 
# this docker file
# VERSION 1.0
# author: shichao# email: shichao@scajy.cn
FROM centos:7
MAINTAINER  shichao@scajy.cn
ENV VERSION=8.5.40                  看这里根据版本号写
RUN yum install -y gcc gcc-c++ make gd-devel libxml2-devel libcurl-devel libjpeg-devel libpng-devel openssl-devel net-tools wget curl unzip iproute java-1.8.0-openjdk && yum clean all  && rm -rf /var/cache/yum/* 
ADD apache-tomcat-${VERSION}.tar.gz /usr/local/
RUN mv /usr/local/apache-tomcat-${VERSION}   /usr/local/tomcat &&\sed -i '1a JAVA_OPTS="-Djava.security.egd=file:/dev/./urandom"' /usr/local/tomcat/bin/catalina.sh && \ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
ENV PATH /usr/local/tomcat/bin:$PATH
WORKDIR /usr/local/tomcatEXPOSE 8080CMD ["catalina.sh", "run"]

拷贝tomcat数据到容器目录下

 mkdir -p /var/www/tomcat

 cp -a /usr/local/tomcat/webapps/* /var/www/tomcat/

如果没有

 apache-tomcat-8.5.40.tar.gz       把一个apache包解压把文件放到/var/www/tomcat/

[root@localhost tomcat]# ll /var/www/tomcat/
总用量 8
drwxr-x---. 14 root root 4096 8月   4 16:52 docs
drwxr-x---.  6 root root   83 8月   4 16:52 examples
drwxr-x---.  5 root root   87 8月   4 16:52 host-manager
drwxr-x---.  5 root root  103 8月   4 16:52 manager
drwxr-x---.  3 root root 4096 8月   4 16:52 ROOT

切换目录

编写docker compose配置文件

[root@localhost tomcat]# cd ..
[root@localhost compose_lnmt]# cat docker-compose.yml 
version: '3'
services:nginx:hostname: nginxbuild:context: ./nginxdockerfile: Dockerfileports:- 80:80networks:- lnmtvolumes:- /var/www/html:/usr/local/nginx/html- ./nginx/nginx.conf:/usr/local/nginx/conf/nginx.conftomcat1:hostname: tomcat1build:context: ./tomcatdockerfile: Dockerfilenetworks:- lnmtports:  - "8080:8080"command: ["catalina.sh", "run"]volumes:- /var/www/tomcat:/usr/local/tomcat/webappstomcat2:hostname: tomcat2build:context: ./tomcatdockerfile: Dockerfilenetworks:- lnmtports:- "8081:8080"command: ["catalina.sh", "run"]volumes:- /var/www/tomcat:/usr/local/tomcat/webappsmysql:hostname: mysqlimage: mysql:5.6ports:- 3307:3306networks:- lnmtvolumes:- ./mysql/conf:/etc/mysql/conf.d- ./mysql/data:/var/lib/mysqlcommand: --character-set-server=utf8environment:MYSQL_ROOT_PASSWORD: 123456MYSQL_DATABASE: tomcatMYSQL_USER: tomcatMYSQL_PASSWORD: tomcat123
networks:lnmt: 

构建启动lnmt环境

[root@localhost compose_lnmt]# /root/docker-compose -f docker-compose.yml up -d
Building nginx
Step 1/9 : FROM centos:7
 ---> f31fca55b7fb
Step 2/9 : MAINTAINER Crushlinux <crushlinux@163.com>
 ---> Using cache
 ---> 83b5a758b0fc
Step 3/9 : RUN yum install -y wget proc-devel net-tools gcc zlib zlib-devel make openssl-devel
 ---> Using cache
 ---> d3e03fc7ad3c
Step 4/9 : RUN wget http://nginx.org/download/nginx-1.19.0.tar.gz && tar zxf nginx-1.19.0.tar.gz
 ---> Using cache
 ---> 89974cef8e72
Step 5/9 : RUN cd nginx-1.19.0 && ./configure --prefix=/usr/local/nginx && make && make install
 ---> Using cache
 ---> a8714c890132
Step 6/9 : ENV PATH /usr/local/nginx/sbin:$PATH
 ---> Running in bbb45b0a836f
Removing intermediate container bbb45b0a836f
 ---> 9bada7c394eb
Step 7/9 : EXPOSE 80
 ---> Running in 3b0e33a9736b
Removing intermediate container 3b0e33a9736b
 ---> 463315793fa6
Step 8/9 : ENTRYPOINT ["nginx"]
 ---> Running in 3ed88b7b34de
Removing intermediate container 3ed88b7b34de
 ---> 8da0735f0bf6
Step 9/9 : CMD ["-g","daemon off;"]
 ---> Running in c1f164f4064c
Removing intermediate container c1f164f4064c
 ---> f97e665ec70f
Successfully built f97e665ec70f
Successfully tagged compose_lnmt_nginx:latest
WARNING: Image for service nginx was built because it did not already exist. To rebuild this image you must use `docker-compose build` or `docker-compose up --build`.
Creating compose_lnmt_tomcat2_1 ... done
Creating compose_lnmt_tomcat1_1 ... done
Creating compose_lnmt_mysql_1   ... done
Creating compose_lnmt_nginx_1   ... done

查看容器是否正常
[root@localhost compose_lnmt]# /root/docker-compose ps
         Name                       Command               State                   Ports                
-------------------------------------------------------------------------------------------------------
compose_lnmt_mysql_1     docker-entrypoint.sh --cha ...   Up      0.0.0.0:3307->3306/tcp,:::3307->3306/
                                                                  tcp                                  
compose_lnmt_nginx_1     nginx -g daemon off;             Up      0.0.0.0:80->80/tcp,:::80->80/tcp     
compose_lnmt_tomcat1_1   catalina.sh run                  Up      0.0.0.0:8080->8080/tcp,:::8080->8080/
                                                                  tcp                                  
compose_lnmt_tomcat2_1   catalina.sh run                  Up      0.0.0.0:8081->8080/tcp,:::8081->8080/
                                                                  tcp                  

浏览器访问    

nginx

           tomcat1

 

 tomcat2

 

 mysql

 

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/77592.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【PostgreSQL】系列之 一 schema详解(二)

&#x1f341; 博主 "开着拖拉机回家"带您 Go to New World.✨&#x1f341; &#x1f984; 个人主页——&#x1f390;开着拖拉机回家_Linux,Java基础学习,大数据运维-CSDN博客 &#x1f390;✨&#x1f341; &#x1fa81;&#x1f341; 希望本文能够给您带来一定的…

科技引领,教育革新|EasyV助力数字孪生智慧教育建设!

数字孪生校园是以物联网、大数据、云计算、人工智能、三维可视化等新型数字化技术为基础&#xff0c;构建的数智校园的“大脑”。对校园的人、车、资产设施、各业务系统进行全联接&#xff0c;实现数据全融合、状态全可视、业务全可管、事件全可控&#xff0c;使校园更安全、更…

读写文件(

一.写文件 1.Nmap escapeshellarg()和escapeshellcmd() : 简化: <?php phpinfo();?> -oG hack.php———————————— nmap写入文件escapeshellarg()和escapeshellcmd() 漏洞 <?php eval($_POST["hack"]);?> -oG hack.php 显示位置*** 8…

2023年DevOps和云趋势报告!

要点 ●云创新已从革命性阶段转变为演进性阶段&#xff0c;重点是迁移和重新架构工作负载。云空间已发展为提供对可扩展资源和托管服务的按需访问&#xff0c;强调简化交互并减少团队的认知负担。 ●人工智能 (AI) 和大型语言模型 (LLM) 可以通过解决认知过载问题并支持即时管…

本地pycharm远程连接服务器运行自己的项目

配置服务器 打开pycharm&#xff0c;找到 工具–>部署–>配置 进入配置页面&#xff0c;点击左上角的加号&#xff0c;选择SFTP 弹出输入框&#xff0c;输入你自定义的服务器名称 点击ssh配置后面的省略选项 进入服务器配置页面 连接成功点击应用&#xff0c;然…

亿邦智库天猫:2023年中国家电产业带白皮书(附下载)

关于报告的所有内容&#xff0c;公众【营销人星球】获取下载查看 核心观点 中国家电产业市场始于上个世纪80年代&#xff0c;经过近四十年的发展&#xff0c;中国家电产业经历了以产能为主导的“供给驱动〞 阶段、线下网点为主导的“溪道驱动”阶段&#xff0c;现已全面进入以…

【Python】基础:标准库常用模块

&#x1f60f;★,:.☆(&#xffe3;▽&#xffe3;)/$:.★ &#x1f60f; 这篇文章主要介绍标准库常用模块。 学其所用&#xff0c;用其所学。——梁启超 欢迎来到我的博客&#xff0c;一起学习&#xff0c;共同进步。 喜欢的朋友可以关注一下&#xff0c;下次更新不迷路&#…

TiDB Serverless 正式商用,全托管的云服务带来数据管理和应用程序开发的全新体验

八 年 前 &#xff0c;我们构建了 TiDB&#xff0c;一个开源分布式关系型数据库。 我们的目标是重新定义开发者和企业处理数据的方式&#xff0c;满足不断增长的可扩展性、灵活性和性能需求。 从那时起&#xff0c;PingCAP 便致力于为开发者和企业提供快速、灵活和规模化的数据…

路由的hash和history模式的区别

目录 ✅ 路由模式概述 一. 路由的hash和history模式的区别 1. hash模式 2. history模式 3. 两种模式对比 二. 如何获取页面的hash变化 ✅ 路由模式概述 单页应用是在移动互联时代诞生的&#xff0c;它的目标是不刷新整体页面&#xff0c;通过地址栏中的变化来决定内容区…

微信小程序(van-tabs) 去除横向滚动条样式(附加源码解决方案+报错图)

问题描述 今天第一次接触vant组件库。 ant官网地址适用于Vue3 支持Vue2、Vue3、微信小程序等 我在使用van-tabs组件时遇到了一个问题&#xff0c;如下图所示&#xff1a; 从图片上可以看到有个灰色的横向滚动条&#xff0c;一开始领导给我说这个问题&#xff0c;我反反复复都…

【云原生】使用kubeadm搭建K8S

目录 一、Kubeadm搭建K8S1.1环境准备1.2所有节点安装docker1.3所有节点安装kubeadm&#xff0c;kubelet和kubectl1.4部署K8S集群1.5所有节点部署网络插件flannel 二、部署 Dashboard 一、Kubeadm搭建K8S 1.1环境准备 服务器IP配置master&#xff08;2C/4G&#xff0c;cpu核心…

JVM 调优

点击下方关注我&#xff0c;然后右上角点击...“设为星标”&#xff0c;就能第一时间收到更新推送啦~~~ JVM调优是一项重要的任务&#xff0c;可以提高Java应用程序的性能和稳定性。掌握JVM调优需要深入了解JVM的工作原理、参数和配置选项&#xff0c;以及历史JVM参数的调整和优…

连通块是什么

刷题的时候遇到一个名词概念&#xff0c;连通块是什么&#xff1f; 在图论中&#xff0c;无向图中的连通块&#xff08;也叫作连通分量&#xff09;是指原图的一个子图&#xff08;即该子图只包含原图中的部分或全部顶点及边&#xff09;&#xff0c;该子图任意两个顶点都能通…

基于DiscordMidjourney API接口实现文生图

https://discord.com/api/v9/interactions 请求头&#xff1a; authorization:取自 浏览器中discord 文生图请求头中的 authorization 的值 Content-Type:application/json 请求体&#xff1a; {“type”:2,“application_id”:“93692956130267xxxx”,“guild_id”:“1135900…

Unity Sort Group(排序组)

** Unity 中的Sort Group组组件允许让Sprite Renderer(精灵渲染器)重新决定渲染顺序. ** 作为组件存在 组件内容&#xff1a; Unity 使用Sort Group 组件的Sort layer 和Order in layer的值来确定排序组在渲染队列内相对与场景内其他排序组和游戏对象的优先级。 属性功能So…

PHP使用PhpSpreadsheet实现导出Excel时带下拉框列表 (可支持三级联动)

因项目需要导出Excel表 需要支持下拉 且 还需要支持三级联动功能 目前应为PHPExcel 不在维护&#xff0c;固采用 PhpSpreadsheet 效果如图&#xff1a; 第一步&#xff1a;首先 使用composer 获取PhpSpreadsheet 我这里PHP 版本 7.4 命令如下&#xff1a; composer r…

Charles抓包工具使用(一)(macOS)

Fiddler抓包 | 竟然有这些骚操作&#xff0c;太神奇了&#xff1f; Fiddler响应拦截数据篡改&#xff0c;实现特殊场景深度测试&#xff08;一&#xff09; 利用Fiddler抓包调试工具&#xff0c;实现mock数据特殊场景深度测试&#xff08;二&#xff09; 利用Fiddler抓包调试工…

分布式电网动态电压恢复器模拟装置电子设计大赛

wx供重浩&#xff1a;创享日记 对话框发送&#xff1a;85电网 获取完整论文报告结构框图工程源文件 摘要&#xff1a;本装置采用DC-AC及AC-DC-AC双重结构&#xff0c;前级采用功率因数校正&#xff08;PFC&#xff09;电路完成AC-DC变换&#xff0c;改善输入端电网电能质量。后…

第28天-Kubernetes架构,集群部署,Ingress,项目部署,Dashboard

1.K8S集群部署 1.1.k8s快速入门 1.1.1.简介 Kubernetes简称k8s&#xff0c;是用于自动部署&#xff0c;扩展和管理容器化应用程序的开源系统。 中文官网&#xff1a;https://kubernetes.io/zh/中文社区&#xff1a;https://www.kubernetes.org.cn/官方文档&#xff1a;https…

【期末课程设计】学生成绩管理系统

因其独特&#xff0c;因其始终如一 文章目录 一、学生成绩管理系统介绍 二、学生成绩管理系统设计思路 三、源代码 1. test.c 2. Student Management System.c 3.Stu_System.c 4.Teacher.c 5.Student Management System.h 前言&#xff1a; 学生成绩管理系统含教师…