当前位置:网站首页>[cloud computing event] vocational skill competition -- container development example pig rapid development framework
[cloud computing event] vocational skill competition -- container development example pig rapid development framework
2022-06-23 07:34:00 【Little snail】
Pig Rapid development framework


Basic preparation
Docker and Docker Compose Installation complete , Software package to be provided Pig.tar.gz Uploaded to the master node /root Directory and extract .
Get resources from blog Homepage
Case implementation
1. Basic environment preparation
(1) Import package
Download and unzip the package :
[[email protected] ~]# tar -xf Pig.tar.gz
[[email protected] ~]# ll Pig
total 206752
-rw------- 1 root root 211696640 Jan 12 17:24 CentOS_7.9.2009.tar
drwxr-xr-x 2 root root 85 Jan 5 08:58 mysql
drwxr-xr-x 3 root root 37 Jan 5 08:56 nginx
drwxr-xr-x 2 root root 97 Jan 5 08:56 service
drwxr-xr-x 3 root root 12288 Jan 5 08:56 yum
Import CentOS:7.9.2009 Mirror image :
[[email protected] ~]# docker load -i Pig/CentOS_7.9.2009.tar
Loaded image: centos:centos7.9.2009
(2) start-up Kubernetes colony
initialization Kubernetes colony :
[[email protected] ~]# init-cluster
View the cluster status :
[[email protected] ~]# kubectl cluster-info
Kubernetes control plane is running at https://apiserver.cluster.local:6443
CoreDNS is running at https://apiserver.cluster.local:6443/api/v1/namespaces/kube-system/services/kube-dns:dns/proxy
To further debug and diagnose cluster problems, use ‘kubectl cluster-info dump’.
2. Containerized deployment MariaDB
(1) To write Dockerfile
To write init.sh Script :
[[email protected] ~]# cd Pig/
[[email protected] Pig]# vi mysql_init.sh
#!/bin/bash
mysql_install_db --user=root
mysqld_safe --user=root &
sleep 8
mysqladmin -u root password 'root'
mysql -uroot -proot -e "grant all on *.* to 'root'@'%' identified by 'root';flush privileges;"
mysql -uroot -proot -e "source /opt/pig.sql;source /opt/pig_codegen.sql;source /opt/pig_config.sql;source /opt/pig_job.sql;"
To write yum Source :
[[email protected] Pig]# vi local.repo
[pig]
name=pig
baseurl=file:///root/yum
gpgcheck=0
enabled=1
To write Dockerfile file :
[[email protected] Pig]# vi Dockerfile-mariadb
FROM centos:centos7.9.2009
MAINTAINER Chinaskills
RUN rm -rf /etc/yum.repos.d/*
COPY local.repo /etc/yum.repos.d/
COPY yum /root/yum
ENV LC_ALL en_US.UTF-8
RUN yum -y install mariadb-server
COPY mysql /opt/
COPY mysql_init.sh /opt/
RUN bash /opt/mysql_init.sh
EXPOSE 3306
CMD ["mysqld_safe","--user=root"]
(2) Build a mirror image
Build a mirror image :
[[email protected] Pig]# docker build -t pig-mysql:v1.0 -f Dockerfile-mariadb .
Sending build context to Docker daemon 890.9MB
Step 1/12 : FROM centos:centos7.9.2009
---> eeb6ee3f44bd
Step 2/12 : MAINTAINER Chinaskills
---> Using cache
---> 815a4a5f2242
Step 3/12 : RUN rm -rf /etc/yum.repos.d/*
---> Using cache
---> 6afa0315cb5b
Step 4/12 : COPY local.repo /etc/yum.repos.d/
---> Using cache
---> 4f07e082cc00
Step 5/12 : COPY yum /root/yum
---> Using cache
---> 7042f9e7f455
Step 6/12 : ENV LC_ALL en_US.UTF-8
---> Using cache
---> df0aa8985d61
Step 7/12 : RUN yum -y install mariadb-server
---> Using cache
---> 9ad09d62d373
Step 8/12 : COPY mysql /opt/
---> Using cache
---> 75adb0e3bbb0
Step 9/12 : COPY mysql_init.sh /opt/
---> Using cache
---> 3cc10e8ca0cc
Step 10/12 : RUN bash /opt/mysql_init.sh
---> Using cache
---> f7fe9f822cc3
Step 11/12 : EXPOSE 3306
---> Using cache
---> 70f2274acbeb
Step 12/12 : CMD ["mysqld_safe","--user=root"]
---> Using cache
---> f088fb18dedf
Successfully built f088fb18dedf
Successfully tagged pig-mysql:v1.0
3. Containerized deployment Redis
(1) To write Dockerfile
To write Dockerfile file :
[[email protected] Pig]# vi Dockerfile-redis
FROM centos:centos7.9.2009
MAINTAINER Chinaskills
RUN rm -rf /etc/yum.repos.d/*
COPY local.repo /etc/yum.repos.d/
COPY yum /root/yum
RUN yum -y install redis
RUN sed -i 's/127.0.0.1/0.0.0.0/g' /etc/redis.conf && \
sed -i 's/protected-mode yes/protected-mode no/g' /etc/redis.conf
EXPOSE 6379
CMD ["/usr/bin/redis-server","/etc/redis.conf"]
(2) Build a mirror image
[[email protected] Pig]# docker build -t pig-redis:v1.0 -f Dockerfile-redis .
Sending build context to Docker daemon 890.9MB
Step 1/9 : FROM centos:centos7.9.2009
---> eeb6ee3f44bd
Step 2/9 : MAINTAINER Chinaskills
---> Using cache
---> 815a4a5f2242
Step 3/9 : RUN rm -rf /etc/yum.repos.d/*
---> Using cache
---> 6afa0315cb5b
Step 4/9 : COPY local.repo /etc/yum.repos.d/
---> Using cache
---> 4f07e082cc00
Step 5/9 : COPY yum /root/yum
---> Using cache
---> 7042f9e7f455
Step 6/9 : RUN yum -y install redis
---> Using cache
---> 2d0b65ca48f0
Step 7/9 : RUN sed -i 's/127.0.0.1/0.0.0.0/g' /etc/redis.conf && sed -i 's/protected-mode yes/protected-mode no/g' /etc/redis.conf
---> Using cache
---> fcb84f12d0cf
Step 8/9 : EXPOSE 6379
---> Using cache
---> 37ac24f680d6
Step 9/9 : CMD ["/usr/bin/redis-server","/etc/redis.conf"]
---> Using cache
---> ee5f16785493
Successfully built ee5f16785493
Successfully tagged pig-redis:v1.0
4. Containerized deployment Pig
Write startup script
[[email protected] Pig]# vi pig_init.sh
#!/bin/bash
sleep 20
nohup java -jar /root/pig-register.jar $JAVA_OPTS >/dev/null 2>&1 &
sleep 20
nohup java -jar /root/pig-gateway.jar $JAVA_OPTS >/dev/null 2>&1 &
sleep 20
nohup java -jar /root/pig-auth.jar $JAVA_OPTS >/dev/null 2>&1 &
sleep 20
nohup java -jar /root/pig-upms-biz.jar $JAVA_OPTS >/dev/null 2>&1
(1) To write Dockerfile
(2) Build a mirror image
[[email protected] Pig]# docker build -t pig-service:v1.0 -f Dockerfile-pig .
Sending build context to Docker daemon 890.9MB
Step 1/11 : FROM centos:centos7.9.2009
---> eeb6ee3f44bd
Step 2/11 : MAINTAINER Chinaskills
---> Using cache
---> 24a91af3317f
Step 3/11 : COPY service /root
---> Using cache
---> d5fe8134b1ed
Step 4/11 : ADD yum /root/yum
---> Using cache
---> 41cc1285cd49
Step 5/11 : RUN rm -rfv /etc/yum.repos.d/*
---> Using cache
---> 2b8dc2f278e0
Step 6/11 : COPY local.repo /etc/yum.repos.d/local.repo
---> Using cache
---> a61d69862c5c
Step 7/11 : RUN yum install -y java-1.8.0-openjdk java-1.8.0-openjdk-devel
---> Using cache
---> 92ccadeb64b6
Step 8/11 : COPY pig_init.sh /root
---> Using cache
---> 1ab999a18ce1
Step 9/11 : RUN chmod +x /root/pig_init.sh
---> Using cache
---> dff4a7c6bba7
Step 10/11 : EXPOSE 8848 9999 3000 4000
---> Using cache
---> d4e37e3952af
Step 11/11 : CMD ["/bin/bash","/root/pig_init.sh"]
---> Using cache
---> acb3d73b810a
Successfully built acb3d73b810a
Successfully tagged pig-service:v1.0
5. Container deployment front-end services
(1) To write Dockerfile
(2) Build a mirror image
[[email protected] Pig]# docker build -t pig-ui:v1.0 -f Dockerfile-nginx .
Sending build context to Docker daemon 890.9MB
Step 1/11 : FROM centos:centos7.9.2009
---> eeb6ee3f44bd
Step 2/11 : MAINTAINER Chinaskills
---> Using cache
---> 815a4a5f2242
Step 3/11 : RUN rm -rf /etc/yum.repos.d/*
---> Using cache
---> 6afa0315cb5b
Step 4/11 : COPY local.repo /etc/yum.repos.d/
---> Using cache
---> 4f07e082cc00
Step 5/11 : COPY yum /root/yum
---> Using cache
---> 7042f9e7f455
Step 6/11 : RUN yum -y install nginx
---> Using cache
---> b6ee699b51ed
Step 7/11 : COPY nginx/dist /data
---> Using cache
---> 04b6d05ba642
Step 8/11 : ADD nginx/pig-ui.conf /etc/nginx/conf.d/
---> Using cache
---> 661b56e2cff6
Step 9/11 : RUN /bin/bash -c 'echo init ok'
---> Using cache
---> 0d98b6d8a81c
Step 10/11 : EXPOSE 80
---> Using cache
---> b1f5ecafc494
Step 11/11 : CMD ["nginx","-g","daemon off;"]
---> Using cache
---> c20fc29b9daa
Successfully built c20fc29b9daa
Successfully tagged pig-ui:v1.0
6. Arrange deployment Pig Rapid development platform
(1) To write Dockerfile
(2) Build a mirror image
(3)DockerCompose One key deployment
version: '2'
services:
pig-mysql:
environment:
MYSQL_ROOT_PASSWORD: root
restart: always
container_name: pig-mysql
image: pig-mysql:v1.0
ports:
- 3306:3306
links:
- pig-service:pig-register
pig-redis:
image: pig-redis:v1.0
ports:
- 6379:6379
restart: always
container_name: pig-redis
hostname: pig-redis
links:
- pig-service:pig-register
pig-service:
ports:
- 8848:8848
- 9999:9999
restart: always
container_name: pig-service
hostname: pig-service
image: pig-service:v1.0
extra_hosts:
- pig-register:127.0.0.1
- pig-upms:127.0.0.1
- pig-gateway:127.0.0.1
- pig-auth:127.0.0.1
- pig-hou:127.0.0.1
stdin_open: true
tty: true
privileged: true
pig-ui:
restart: always
container_name: pig-ui
image: pig-ui:v1.0
ports:
- 8888:80
links:
- pig-service:pig-gateway
边栏推荐
- Spock-sub打桩
- Akamai-1.75 version-_ Abck parameter generation JS reverse analysis
- Minio single node deployment Minio distributed deployment fool deployment process (I)
- 链游飞船开发 农民世界链游开发 土地链游开发
- codeforce 158B Taxi
- TensorFlow中的数据类型
- [pyqt5 series] modify the counter to realize control
- [深度学习][原创]如何不用yolov5权重或者模型进行目标检测和绘制map等参数图
- 【唠嗑篇】普通人到底该怎么学技术啊?
- 【PyQt5系列】修改计数器实现控制
猜你喜欢
![[* * * array * * *]](/img/fe/2520d85faab7d1fbf5036973ff5965.png)
[* * * array * * *]

PSP code implementation

Deep learning series 47: Super sub model real esrgan

Tp6+redis+think-queue+supervisor implements the process resident message queue /job task

传智教育 | 多人协作开发出现代码冲突,如何合并代码?

Yan's DP analysis

Initialization layer implementation

Intelligence Education - how to merge codes when code conflicts occur in multi person collaborative development?

用户态和内核态

Heuristic search strategy
随机推荐
传智教育 | 项目发布前如何打tag标签及标签命名规范
Ldconfig command
MySQL(四) — MySQL存储引擎
Arthas-thread命令定位线程死锁
In depth learning series 46: face image super score gfp-gan
RFID data security experiment: C # visual realization of parity check, CRC redundancy check and Hamming code check
[AI practice] data normalization and standardization of machine learning data processing
跳跃表原理
控制台程序
In depth learning series 47:stylegan summary
How bootstrap clears floating styles
Wechat multiplayer chat and Roulette Games (websocket Implementation)
Cirium has gradually become the standard for airlines' carbon dioxide emission reporting
How flannel works
MySQL (11) - sorting out MySQL interview questions
Tp6+redis+think-queue+supervisor implements the process resident message queue /job task
The List
Focusing on the industry, enabling customers | release of solutions for the five industries of the cloud container cloud product family
100 GIS practical application cases (79) - key points of making multi plan integrated base map
MySQL(五) — 锁及事务
