当前位置:网站首页>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.
边栏推荐
- 国产虚拟化云宏CNware WinStack安装体验-5 开启集群HA
- 剑指Offer 56.数组中数字出现的次数
- Selenium of reptiles
- 安装radondb mysql遇到问题
- 要想成为黑客,离不开这十大基础知识
- if/else或switch替换为Enum
- ImportError: /lib/libgdal.so.26: undefined symbol: sqlite3_column_table_name
- MySQL 啥时候用表锁,啥时候用行锁?这些你都应该知道吧
- 87. (Home of cesium) cesium heat map (topography)
- 系统太多,多账号互通如何实现?
猜你喜欢
随机推荐
MySQL如何一劳永逸的永久支持输入中文
基于ck+redash构建MySQL慢日志+审计日志展示平台
Arduino实验三:继电器实验
阿里巴巴政委体系-第七章、阿里政委培育
Rust:多线程并发编程
Oracle 脚本实现简单的审计功能
MySQL 啥时候用表锁,啥时候用行锁?这些你都应该知道吧
Bytes to beat three sides take offer: network + GC + + IO + redis + JVM red-black tree + data structure, to help you quickly into the giant!!!!!
ctfshow php特性
【微信小程序】NFC 标签打开小程序
2022年7月国产数据库大事记
Postgresql源码(65)新快照体系Globalvis工作原理分析
C#爬虫之通过Selenium获取浏览器请求响应结果
阿里巴巴政委体系-第八章、阿里政委工作方法论
阿里巴巴政委体系-第九章、阿里政委启示录
VsCode预览Geojson数据
Compose原理-compose中是如何实现事件分法的
丙二醇二乙酸酯(Propylene Glycol Diacetate)
分享即时通讯开发之WebSocket:概念、原理、易错常识、动手实践
MySQL如何 drop 大表









