Loading

摘要: 1、首先部署注册中心name-server # 先创建专属网络 1.1 容器网络互联创建docker网络: # 后续的name-server,broker,rocketmq-console都会使用该网络 docker network create rocketmq # 创建好网络可以使用docker 阅读全文
posted @ 2022-02-20 17:53 Allfuture 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 常用命令: # 查看谁正在使用某个文件 lsof /filepath/file # 列出某个用户打开的文件信息 lsof -u username # 列出某个程序所打开的文件信息 lsof -c mysql 备注: -c 选项将会列出所有以mysql开头的程序的文件 其实你也可以写成: lsof | 阅读全文
posted @ 2022-02-20 17:07 Allfuture 阅读(224) 评论(0) 推荐(0) 编辑
摘要: LInux原始的防火墙工具iptables由于过于繁琐,所以ubuntu系统默认提供了一个基于iptable之上的防火墙工具ufw。 安装: apt install ufw 正常情况安装以后应该是默认禁止状态的,输入 ufw status verbose命令可以看到如下界面: ufw status 阅读全文
posted @ 2022-02-20 17:00 Allfuture 阅读(232) 评论(0) 推荐(0) 编辑