Quick Installation
If you lack relevant experience, you can refer to Manual installation and deployment example
-
Prepare a Linux server, with minimum configuration requirements: 4 cores, 16G memory, 40G data disk (excluding system disk), ensure that the
8880,38880,38881ports are not occupied, and the port connectivity between the server and the client is normal (For formal environment use, it is recommended to control access to ports 38880 and 38881 through security policies. This access address corresponds to some operations management functions); -
To check environment parameters, refer to Parameter Description
-
To install Docker, please refer to the official Installation Instructions for different Linux versions;
warningSince Docker v29 (and containerd v2.1.5), containers inherit systemd’s
LimitNOFILEconfiguration by default. This change caused the maximum number of open files in the container (ulimit -n) to plummet from the original 1048576 to 1024.This will cause services such as databases and middleware to fail to start or crash during operation because they cannot open enough file handles. Be sure to adjust this limit to 102400 or above.
👉 Reference method: Adjust container file descriptor limits
1. Modify Docker default resource limits
Modify or create a new
/etc/docker/daemon.json, adddefault-ulimitsconfiguration, and setnofileto102400:{"default-ulimits": {"nofile": {"Name": "nofile","Soft": 102400,"Hard": 102400}}}2. Restart Docker
Execute the following command to make the modification effective immediately:
systemctl restart docker -
Download the HDP private deployment image (Offline Package Download)
- Linux amd64
- Linux arm64
docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-hdp:1.2.1docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-core:7.4.2docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-sc:3.2.0docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-flink:1.19.720docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-hdp-arm64:1.2.1docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-core-arm64:7.4.2docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-sc-arm64:3.2.0docker pull registry.cn-hangzhou.aliyuncs.com/mdpublic/mingdaoyun-flink-arm64:1.19.720 -
Download the Manager
- Linux amd64
- Linux arm64
wget https://pdpublic.mingdao.com/private-deployment/7.4.2/mingdaoyun_private_deployment_captain_linux_amd64.tar.gzwget https://pdpublic.mingdao.com/private-deployment/7.4.2/mingdaoyun_private_deployment_captain_linux_arm64.tar.gz -
Extract the Manager
- Linux amd64
- Linux arm64
tar -zxvf mingdaoyun_private_deployment_captain_linux_amd64.tar.gztar -zxvf mingdaoyun_private_deployment_captain_linux_arm64.tar.gz -
Start the manager
bash ./service.sh startwith root privileges (Please make sure the manager is always running); -
After startup, access through
http://{Server IP}:38881in the browser and set the system access address, then select the HDP product for initialization (the initialization process lasts about 5 minutes); -
After the initialization is completed, first create an administrator account, then apply for and bind the license key to enter 👏 👏.