MinIO:使用容器的方式部署
使用容器的方式搭建MinIO,你需要使用到两个工具:
- podman
- docker
在这里,我是用podman
首先,你需要安装podman:
然后,创建给MinIO使用的路径:
拉取MinIO的容器镜像:
如果使用的是docker:
如果使用的[……]
Adamhuan's Data Center - 【逻辑驱动数据】
数据玩物、代码屋、1/0游戏:(零和博弈)/ 禅宗意志 / 规则战争 / 解放数据力量 / 技术的飞速发展并没有改变这个世界,因为,这个世界从没有变,它只是越来越趋近于它本来的模样。
使用容器的方式搭建MinIO,你需要使用到两个工具:
在这里,我是用podman
首先,你需要安装podman:
然后,创建给MinIO使用的路径:
拉取MinIO的容器镜像:
如果使用的是docker:
如果使用的[……]
所有服务器的基本配置:
关闭防火墙与SELINUX
1 2 3 4 5 6 7 8 9 |
[root@mha1 script_me]# sestatus SELinux status: disabled [root@mha1 script_me]# [root@mha1 script_me]# systemctl status firewalld firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled) Active: inactive (dead) [root@mha1 script_me]# |
文件:/etc/hosts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[root@mha1 script_me]# systemctl status firewalld firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled) Active: inactive (dead) [root@mha1 script_me]# [root@mha1 script_me]# [root@mha1 script_me]# cat /etc/hosts #127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 #::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 # Local 127.0.0.1 localhost # Pub 192.168.19.151 mha1 # manager 192.168.19.152 mha2 # node 192.168.19.153 mha3 # node 192.168.19.154 mha4 # node [root@mha1 script_me]# |
SSH等价:
脚本下载地址:https://github.com[……]
Jboss上的WEB应用的发布方式和Apache HTTPD或者TOMCAT是有所区别的。
你可以选择操作文件系统,上传WEB程序到:
$JBOSS_HOME/standalone/deployments(Wildfly中为该路径。)
不同版本的JBOSS的发布路径是不一样的。
同时,它[……]