
docker
文章平均质量分 56
HFwa
是程序员,但也不仅是程序员
展开
-
Failed to start Docker Application Container Engine.
Failed to start Docker Application Container Engine.今天突然发现docker暂停了,启动不起来,文字描述如下:[root@hfwas /]# docker ps Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?[root@hfwas /]# [root@hfwas /]# [root@hfwas /]原创 2022-04-22 23:23:25 · 2251 阅读 · 0 评论 -
内网安装docker环境
内网安装docker环境在为期两天的部署过程当中遇到的一些问题和docker环境的部署的记录防火墙切记:首先关闭防火墙,不然容器访问会报错,血的教训!!!执行systemctl stop firewalld永久禁用防火墙,执行systemctl disable firewalld如果是先安装的docker,再停止防火墙,切记要重启docker!!!!,执行systemctl restart docker离线 - 内网环境从https://download.docker.com/l原创 2022-04-02 01:25:16 · 2962 阅读 · 1 评论 -
org.springframework.amqp.AmqpTimeoutException: java.util.concurrent.TimeoutException
2021-11-27-rabbitmq连接超时报错报错截图:报错文字版:org.springframework.amqp.AmqpTimeoutException: java.util.concurrent.TimeoutException at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:7原创 2021-11-27 22:21:53 · 5495 阅读 · 0 评论 -
阿里云docker安装rabbitmq并代码测试
阿里云docker安装rabbitmq并代码测试文章目录阿里云docker安装rabbitmq并代码测试拉取镜像镜像列表:启动容器:rabbtimq启动截图:访问页面截图:新添加一个账户新建项目测试新建cloud-stream-rabbitmq-provider8801项目修改POM依赖文件修改配置文件新建主启动类StreamMQMain8801新建消息接口新建实现类新建controller层rabbitma网页端查看postman测试IDEA查看控制台输出rabbitmq查看注意事项:拉取镜像doc原创 2021-11-27 21:53:23 · 828 阅读 · 0 评论 -
阿里云docker安装MySQL
阿里云docker安装MySQL阿里云拉取mysql镜像docker pull mysql:5.7安装MySQL在/data/mysql下,所有的配置文件和数据都存储在这个目录下执行docker image命令查看镜像配置mysql,新建mysql.conf文件[client]default-character-set=utf8[mysql]default-character-set=utf8[mysqld]init_connect='SET collation_connectio原创 2021-11-07 16:48:39 · 1080 阅读 · 0 评论