网站Logo 永夜の博客
首页
素笺存忆
友情链接
瞬间
网盘
影视
阅读
传送门
代码仓库BUG箓
工具
frpc配置生成器
登录

解决Windows Docker容器端口映射问- Ports are not available: exposing port bind: An attempt was made to access

解决Windows Docker容器端口映射问题 (HTTP code 500) server error - Ports are not available: exposing port TCP 0.0.0.0:3000 -> 0.0.0.0:0: listen tcp 0.0.0.0:3000:

2025-07-20
0
0
Windows
Docker
NAT

Mongo7.0.16(docker desktop安装)

一、拉取mongo镜像 docker pull mongo:7.0.16 二、创建挂载路径 创建两个路径 /data 和 conf 三、创建 mongod.conf 配置文件 systemLog: destination: file path: "/var/log/mongodb/mo

2025-07-20
0
0
Windows
Mongo
Docker

MySQL8.0(docker desktop安装)教程

一、获取MySQL8.0镜像 docker pull mysql:8.0 二、查看是否下载 docker images 三、挂载宿主机配置 创建日志文件夹路径:D:\night\docker\mysql8.0\logs 创建数据文件夹路径:D:\night\docker\mysql8.0\dat

2025-07-20
1
0
Windows
Docker
MySQL

MySQL篇之解决启动时报错:Warning: World-writable config file ‘/etc/my.cnf’ is ignored

一、前言 当我们搭建好了MySQL服务后,有时候想要改变一些Mysql对应的配置文件等,比如改变端口、socket文件的生成位置等。 而MySQL对应的配置文件默认为/etc/my.cnf,所以需要更改一些信息,得修改/etc/my.cnf 解决启动时报错 Warning: World-writab

2025-07-20
1
0
Windows
MySQL

MYSQL命令行输入密码警告问题"mysql: [Warning]"解决

一、问题 [root@localhost ~]# mysql -uroot -p1234567 mysql: [Warning] Using a password on the command line interface can be insecure. 二、解决方法 1. 方法一 将密码写入到

2025-07-20
0
0
Windows
MySQL

Redis7.4(docker desktop安装)

docker run --name redis7.4 -p 6379:6379 -v D:\docker\redis7.4\data:/data -d redis:7.4 redis-server --appendonly yes --requirepass night

2025-07-20
0
0
Windows
Docker
Redis