创建容器时报错: WARNING: IPv4 forwarding is disabled. Networking will not work. # docker run -it -p 30001:22 --name=centos-ssh centos /bin/bash WARNING: IPv4 forwarding is disabled. Networking will not work. 解决方法: 修改 /usr/lib/sysctl.d/00-system.conf 文件 #编辑文…
docker pull 时报错: failed to register layer: devmapper: Thin Pool has 107394 free data blocks which is less than minimum required 163840 free data blocks. Create more free space in thin pool or use dm.min_free_space option to change behavior 解决方法: 1. C…
启动MySQL5.7时报错:initialize specified but the data directory has files in it. Aborting 解决方法: vim /etc/my.cnf 查看文件,寻找datadir=... 查看到:datadir=/usr/local/mysql/data, 这个是data保存目录. 进入/usr/local/mysql/data后,查看到确实有数据: 将/usr/local/mysql/data备份, cd /usr/local/my…