1、下载一个centos
2、启动centos-mysql容器
遇到问题:
容器中缺少文件:libaio.so.1、libnuma.so.1、libtinfo.so.5
在宿主机上找到文件,上传到容器中
#docker cp libtinfo.so.5 centos-mysql:/lib64/
为了避免重新安装,可以先上传libaio.so.1、libnuma.so.1、libtinfo.so.5文件
3、将mysql上传到centos-mysql中
#docker cp mysql-8.0.19-linux-glibc2.12-x86_64.tar.xz centos-mysql:/root
4、安装mysql,懒得装了,直接用安装脚本(https://www.cnblogs.com/leihongnu/p/13024644.html)
因为安装脚本是在/root下开始,懒得改了,所以上传到容器的/root下。下图是上传到根目录在移动到/root
将脚本写入1.sh文件中,执行安装source 1.sh
6、启动,验证
docker里面不能用service??
#/usr/local/mysql/support-files/mysql.server start