04 2022 档案

摘要:mkdir kafka cd kafka 编写docker-compose.yml version: '3' services: zookeeper: image: 'bitnami/zookeeper:3.7' ports: - '2190:2181' environment: - ZOO_ENA 阅读全文
posted @ 2022-04-22 15:59 if年少有为 阅读(941) 评论(0) 推荐(0) 编辑
摘要:1.拉取镜像 docker pull zookeeper:3.4.11 2.zookeeper集群搭建 mkidr zk-cluster cd zk-cluster vim docker-compose.yml 写入如下内容 version: '2' services: zoo1: image: z 阅读全文
posted @ 2022-04-22 14:40 if年少有为 阅读(1090) 评论(0) 推荐(0) 编辑
摘要:在VirtualBox中复制Linux虚拟机后,启动后发现没有网卡的启动(即输入/sbin/ifconfig后没有eth0),重启network服务,提示的错误为: Device eth0 does not seem to be present, delaying initialization 问题 阅读全文
posted @ 2022-04-09 16:27 if年少有为 阅读(317) 评论(0) 推荐(0) 编辑
摘要:centos6(centos6官方源已下线,建议切换centos-vault源) wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-vault-6.10.repo 或者 curl -o / 阅读全文
posted @ 2022-04-09 15:13 if年少有为 阅读(81) 评论(0) 推荐(0) 编辑