摘要:
docker run --name nacos -d -p 8848:8848 --restart=always --privileged=true nacos/nacos-server:1.3.2 阅读全文
摘要:
执行命令 下载镜像 docker pull redis:6.0.8 启动容器 docker run --restart=always -p 6379:6379 -v /usr/local/redis/data:/data -v /usr/local/redis/conf/redis.conf:/et 阅读全文
摘要:
1. 下载文件 wget https://mirror.bit.edu.cn/apache/rocketmq/4.7.1/rocketmq-all-4.7.1-bin-release.zip rocketmq-console-ng-2.0.0.jar 上传文件 解压 创建文件夹 #存储RocketM 阅读全文
摘要:
勾选上去就好, idea 运行docker build 和 push 需要调用本地docker 的守护进程, 需要暴露出来 阅读全文
摘要:
docker rm `docker ps -a | grep Exited | awk '{print $1}'` 删除异常停止的docker容器 docker rmi -f `docker images | grep '<none>' | awk '{print $3}'` 删除名称或标签为non 阅读全文
摘要:
(java.io.IOException) caught when processing request to {}->unix://localhost:80: Permission denied chmod 777 /var/run/docker.sock 阅读全文
摘要:
修改 /etc/emqx/emqx.conf 的配置项 ## Allow anonymous authentication by default if no auth plugins loaded. ## Notice: Disable the option in production deploy 阅读全文
摘要:
emqx_ctl admins passwd admin 密码 阅读全文
摘要:
一、代码自动格式化提高效率 如果在保存代码时能自动格式化代码,例如去掉没有被引用的import类,并且按照格式模板格式化,那么既能提高代码质量又能提高开发效率。 二、代码格式化插件Save Actions 1.Save Actions的功能如下: Optimize imports Run on fi 阅读全文
摘要:
一、Gitlab 安装 1. 环境准备 本教程主要以 CentOS 7为主,其他系统请查看官方文档对比。 1. 安装和打开 http 和 ssh 的权限 sudo yum install -y curl policycoreutils-python openssh-server sudo syste 阅读全文