当前位置:网站首页>Execute the mysql script file in the docker mysql container and solve the garbled characters
Execute the mysql script file in the docker mysql container and solve the garbled characters
2022-08-03 19:02:00 【Lanzhou Qianfan】
docker 容器中执行mysqlscript files and resolve garbled characters
Searched a lot online,在容器mysqlIs it so hard to execute a piece of code in ?Make it very complicated. So record it yourself,虽然简单,But still afraid of forgetting it later,Search for a long time.
The need now is to be minesql文件导入进来,然后让docker中的mysql 来执行它.
注意mysql在docker容器中,If you only import to the host machine,Then enter the container to executesql文件的话,It will tell you that it cannot be opened,Because the outside of the host and the inside of the container are relatively isolated,It is impossible to find the path of the host inside the container.
因此,All we have to do is put the host machinesqlThe file is copied inside the container,Then let it execute,这样就好了. 我把sqlfiles are placed here,Here is what I used to do anddocker sqlOrdinary directory for file mounts,当然,You can put it anywhere now.
To copy to the inside of the container,You need to find the container first. 首先列举出来,Take a look at running containers,对应mysql的id就知道了.
docker ps然后我们通过id to specify the container,这个也就是mysql容器的id We can enter the container with this command,We go in here,You can log in heremysql,然后执行脚本.
docker exec -it 4f50fbeb15ee /bin/bashctrl+d,退出容器 但是在这之前,我们要将sql文件拷贝进来.
docker cp /mysql/mysql/1.sql 4f50fbeb15ee:/home/1.sqlcpThe back is your host computersql文件所在的路径,容器idThe latter one is the containerhome文件夹,One is named after I copied itsql文件.Copy here.
after copying,We go into the container again.
docker exec -it 4f50fbeb15ee /bin/bashThen we go into the containerhome
cd homeCheck to see if there is one in the directory1.sql,View inside the container is not availablell,所以用ls
ls有的 在容器中执行,Just use the path in the container,It has nothing to do with the host path. 然后我们就执行
source /home/1.sql但是有的时候啊,执行完毕后,He will have some gibberish.
So we can try to look at some encodings
show variables like '%char%';I changed all these encodings to utf-8
set character_set_client=utf8;
set character_set_connection=utf8;
set character_set_database=utf8;
set character_set_results=utf8;
set character_set_server=utf8;这样做是有效的,Later, the fields with garbled characters in my database were all normal.
边栏推荐
猜你喜欢

87. (Home of cesium) cesium heat map (topography)

分享即时通讯开发之WebSocket:概念、原理、易错常识、动手实践

Online monitoring of UPS power supply and operating environment in the computer room, the solution is here
![[笔记]机器学习之前言介绍](/img/69/e2acd3efd5f513c9c32fca701b66c0.png)
[笔记]机器学习之前言介绍

盲僧发现了华点——教你如何使用API接口获取数据

vulnhub pyexp: 1

Zhong Hua, senior architect of Ali: China-Taiwan strategic thinking and architecture practice; including internal implementation manual

首届MogDB征文活动开启啦!

【WPS-OFFICE-Word】 WPS中样式的运作原理?样式自动更新、自动改变如何处理?样式的管理方法?

go语言实现导出string字符串到文件中
随机推荐
Rust:多线程并发编程
Postgresql源码(64)查询执行——子模块Executor(2)执行前的数据结构和执行过程
丙二醇二乙酸酯(Propylene Glycol Diacetate)
【夜莺监控方案】08-监控msyql集群(prometheuse+n9e+mysqld_exporter)
go语言实现导出string字符串到文件中
微信小程序分享功能
6000 字+,帮你搞懂互联网架构演变历程!
MySQL如何 drop 大表
Big guy, who is free to help me to see what the problem is, I just read MySQL source print, and I just came into contact with flink.
LineSegmentTree线段树
梅科尔工作室-14天华为培训六
借助kubekey极速安装Kubernetes
POJ 2377 Bad Cowtractors(最大生成树)
ctfshow php特性
VsCode预览Geojson数据
[Notes] Introduction to machine learning
[笔记]机器学习之前言介绍
阿里巴巴政委体系-第九章、阿里政委启示录
online 方式创建索引触发trigger怎么办?
Web项目中简单使用线程池