preface
Reference blog: https://blog.csdn.net/qq_41632602/article/details/115366909 Reference blog: https://blog.csdn.net/mshxuyi/article/details/108425487 Based on the two articles, a series of changes have been made according to their own environment and needs
Cluster planning
Overall planning
host nameIP addressrolemaster192.168. ...
Posted by dudejma on Sun, 22 May 2022 06:21:54 +0300
Docker installation and common commands
1, docker installation
1.yum update
yum update
2. Install required packages
Yum util provides the yum config manager function, and the other two are dependent on the devicemapper driver
yum install -y yum-utils device-mapper-persistent-data lvm2
3. Set yum source
yum-config-manager --add-repo ht ...
Posted by NFWriter on Sun, 22 May 2022 00:50:52 +0300
This article will share how to quickly run the interesting model on Hugging Face locally through Docker. Run the model with less code and less time cost than the original project.
If you are familiar with Python, most model projects can be deployed and run locally in about 10 minutes.
Write in front
In order to facilitate the display, I chos ...
Mall project is a set of e-commerce system, including front office mall system and background management system. It is implemented based on SpringBoot+MyBatis and deployed in Docker container. The front desk mall system includes home page portal, commodity recommendation, commodity search, commodity display, shopping cart, order process, mem ...
Posted by Flinch on Fri, 20 May 2022 22:49:00 +0300
Chapter 1 is written in front and must be read
1.1 brief description of Hadoop ecology
Note: hadoop is just a platform for storing data. mapreduce is a computing framework, which requires programmers to write programs to process data. Then hadoop is an ecosystem, that is, it also runs HBase database, sqoop, shark and other tools, so as to make ...
Posted by dvt85 on Fri, 20 May 2022 17:54:54 +0300
Cultivation backgroundI worked overtime day and night to develop the simplest Go Hello world application. Although I just quit after printing, my boss also asked me to go online, the only application I can write.The project structure is as follows:.
├── go.mod
└── hello.gohello.go code is as follows:package main
func main() {
println("hell ...
Posted by Jeller on Fri, 20 May 2022 05:47:20 +0300
Recently, there is a need to store pictures in the server, so I am going to build my own picture server, based on the centos system, and install nginx for mapping. Before starting, it is recommended to update the yum source of centos
# update yum source
yum update
Create an image
It’s time to build your own server. I don&r ...
Posted by ShaileshD on Thu, 19 May 2022 22:43:21 +0300
Installing Rancher under Docker For Mac
Original text: How to install Rancher on OS X
Rancher is a Docker orchestration solution. Its advantage is that it can do container orchestration, network, storage and load balancing. It also supports cloud servers (such as Amazon EC2/Azure/DigitalOcean) and is compatible with other solutions such as Do ...
Posted by djddb on Thu, 19 May 2022 19:49:58 +0300
1. Preparation
① A built zookeeper cluster is required
② Pull activemq image
docker pull webcenter/activemq
③ Explain
hostZookeeper cluster portAMQ cluster bind portAMQ message tcp portManagement console port192.168.16.1062181tcp://0.0.0.0:63631616168161192.168.16.1062182tcp://0.0.0.0:63632616178162192.168.16.1062183tcp://0.0.0.0:636336161 ...
Posted by mattwal on Wed, 18 May 2022 04:08:28 +0300