mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-10-31 03:07:34 +08:00 
			
		
		
		
	fix: 本地数据备份命令增加 --default-character-set 参数 与备份还原的编码保持一致
This commit is contained in:
		
							parent
							
								
									adde751b73
								
							
						
					
					
						commit
						7e6c39bb08
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -220,7 +220,7 @@ func (r *Local) Backup(info BackupInfo) error { | |||
| 	} | ||||
| 	outfile, _ := os.OpenFile(path.Join(info.TargetDir, info.FileName), os.O_RDWR|os.O_CREATE, 0755) | ||||
| 	global.LOG.Infof("start to mysqldump | gzip > %s.gzip", info.TargetDir+"/"+info.FileName) | ||||
| 	cmd := exec.Command("docker", "exec", r.ContainerName, "mysqldump", "-uroot", "-p"+r.Password, info.Name) | ||||
| 	cmd := exec.Command("docker", "exec", r.ContainerName, "mysqldump", "-uroot", "-p"+r.Password, "--default-character-set="+info.Format, info.Name) | ||||
| 	gzipCmd := exec.Command("gzip", "-cf") | ||||
| 	gzipCmd.Stdin, _ = cmd.StdoutPipe() | ||||
| 	gzipCmd.Stdout = outfile | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue