답변:
먼저 명령 행이 mysql 명령을 인식하는지 확인하십시오. 명령으로 이동하지 않으면 다음을 입력하십시오.
set path=c:\wamp\bin\mysql\mysql5.1.36\bin
그런 다음이 명령을 사용하여 데이터베이스를 내보내십시오.
mysqldump -u YourUser -p YourDatabaseName > wantedsqlfile.sql
그런 다음 데이터베이스 암호를 입력하라는 메시지가 표시됩니다 .
이 명령을 실행하는 동안 데이터베이스를 현재 경로로 내 보냅니다.
참고 : 다음은 가져 오기 및 내보내기에 대한 자세한 지침입니다.
-p
와 사이에 공백이 없습니다 thepassword
.
-p
하고 암호를 입력하라는 메시지가 표시됩니다. 이렇게하면 비밀번호를 저장하지 않아도됩니다..bash_history
다음 명령을 사용하십시오.
수출용 :
mysqldump -u [user] -p [db_name] | gzip > [filename_to_compress.sql.gz]
가져 오기 :
gunzip < [compressed_filename.sql.gz] | mysql -u [user] -p[password] [databasename]
참고 : 키워드 '-p'와 비밀번호 사이에는 공백이 없습니다.
gzip -9
최대 압축이 사용되므로 지정 하면 결과 파일이 약간 작아집니다.
먼저 열려있는 명령 프롬프트 다음 cmd 에서 bin 디렉토리를여십시오 ( cmd 명령으로 알고 있기를 바랍니다 ) 는 WAMP 프로그램 파일 에서 MySql 폴더의 bin 디렉토리 로 이동 하십시오.
명령을 실행
mysqldump -u db_username -p database_name > path_where_to_save_sql_file
Enter enter 시스템은 특정 데이터베이스를 내보내고 지정된 위치에 sql 파일을 만듭니다.
나는 당신이 그것을 바랍니다 :) 당신은 질문이있는 경우 알려 주시기 바랍니다.
아래 명령을 사용할 수 있습니다.
mysqldump --databases --user=root --password your_db_name > export_into_db.sql
생성 된 파일은이 명령을 실행 한 동일한 디렉토리에서 사용 가능합니다.
당신은 공식 참조에 대한 자세한 찾을 수 mysqldump
: 가져 오기 내보내기의 MySQL DB를
참고 : 마지막 것은 더 이상 지원되지 않으므로 --databases
대신 사용 하십시오--database
.
즐겨 :)
mysqldump: [ERROR] unknown option '--database'
있지만 재치 배제 --database
가 효과가 있었다.
이 경로에서 명령 프롬프트로 이동하십시오.
C:\Program Files (x86)\MySQL\MySQL Server 5.0\bin>
그런 다음이 명령을 사용하여 데이터베이스를 내보내십시오 ( -p 뒤에 공백 없음 ).
mysqldump -u[username] -p[userpassword] yourdatabase > [filepath]wantedsqlfile.sql
다음을 사용하여 mysql 인스턴스를 찾으십시오.
which mysql
이것이 올바른 경우 다음을 사용하여 내보내십시오 (또는 bin의 mamp 폴더에서 mysql 인스턴스로 이동하십시오).
mysqldump -u [username] -p [password] [dbname] > filename.sql
그리고 동시에 압축하려면 다음을 수행하십시오.
mysqldump -u [username] -p [password] [db] | gzip > filename.sql.gz
그런 다음 다음을 사용하여 서버간에이 파일을 이동할 수 있습니다.
scp user@xxx.xxx.xxx.xxx:/path_to_your_dump/filename.sql.gz your_detination_path/
여기서 xxx.xxx.xxx.xxx는 서버 IP 주소입니다.
그런 다음 가져옵니다.
gunzip filename.sql.gz | mysql -u [user] -p [password] [database]
password
명령 행에서 실제 를 제거하는 것입니다 .
mysqldump -u tutorials -p'mypassword' -h 127.0.0.1 database_name > file_backup_database_name_.sql
경고 : 명령 행 인터페이스에서 비밀번호를 사용하면 안전하지 않을 수 있습니다.
이 명령으로 데이터베이스를 내보내십시오. 여기에는 날짜도 포함됩니다.
mysqldump -u[username] -p[userpassword] --databases yourdatabase | gzip > /home/pi/database_backup/database_`date '+%m-%d-%Y'`.sql.gz
(-p 뒤에 공백이 없음)
--databases
하면 CREATE DATABASE XYZ;
및로 명령문이 삽입되므로 USE XYZ;
다른 이름으로 다른 DB로 SQL을 가져올 때 유용하지 않습니다.
내 wamp 서버를 D : 드라이브에 설치 했으므로 ur 명령 줄에서 다음 경로로 이동해야합니다-> (및 u가 c : 드라이브에 ur wamp를 설치 한 경우 d : wtih c : 여기)
D:\>cd wamp
D:\wamp>cd bin
D:\wamp\bin>cd mysql
D:\wamp\bin\mysql>cd mysql5.5.8 (whatever ur verserion will be displayed here use keyboard Tab button and select the currently working mysql version on your server if you have more than one mysql versions)
D:\wamp\bin\mysql\mysql5.5.8>cd bin
D:\wamp\bin\mysql\mysql5.5.8\bin>mysqldump -u root -p password db_name > "d:\backupfile.sql"
여기 root 는 내 phpmyadmin의 사용자입니다. password 는 phpmyadmin의 암호 입니다. 만약 root에 대한 암호를 설정하지 않았다면 db_name은 데이터베이스입니다 (데이터베이스 ur는 백업을 수행합니다), backupfile.sql은 UR 데이터베이스의 백업을 원하는 파일 및 백업 파일 위치 (d : \ backupfile.sql)를 컴퓨터의 다른 위치로 변경할 수도 있습니다.
-p
와 password
?
이 모든 솔루션의 문제 ( >
리디렉터 문자를 은 stdout에서 덤프를 작성하여 데이터베이스의 일부 문자 인코딩을 중단 할 수 있다는 것입니다.
문자 인코딩 문제가있는 경우 같은 :
오류 1064 (42000) : SQL 구문에 오류가 있습니다. 근처에서 사용할 올바른 구문은 MySQL 서버 버전에 해당하는 설명서를 확인하십시오.
그럼, 당신 은 사용해야합니다-r
파일을 작성하는 옵션을 선택합니다.
MySQL
mysqldump -u user -pyour-password-without-space-between-letter-p-and-your-password --default-character-set=utf8 --host $HOST database-name -r dump.sql
도커 사용
docker exec --rm -v $pwd:dump -it mysql:5:7 mysqldump -u user -pyour-password-without-space-between-letter-p-and-your-password --default-character-set=utf8 --host $HOST database-name -r dump/dump.sql
참고 : 현재 경로를 인스턴스 내에 덤프로 마운트합니다.
반대로 <
덤프를 데이터베이스로 가져 오는 데 사용하지 마십시오. UTF8 이외의 문자는 전달되지 않을 수 있습니다. 그러나 소스 옵션을 선호합니다.
mysql -u user -pYourPasswordYouNowKnowHow --default-character-set=utf8 your-database
mysql> SET names 'utf8'
mysql> SOURCE dump.sql
(mysqldump.exe full path) -u (user name) -p (password) (database name) > (export database file full path)
c:>d:\wamp\bin\mysql\mysql5.6.12\bin\mysqldump.exe -u root -p mydbname > d:\mydb.sql
여기서 d : \ wamp \ bin \ mysql \ mysql5.6.12 \ bin \ mysqldump.exe 는 실제 mysqldump.exe 경로이고, mydbname 은 내보내 려는 데이터베이스 이름이고 d : \ mydb.sql 은 경로입니다. 내 보낸 데이터베이스를 저장하려고합니다.
도커에서 실행중인 db의 덤프를 가져 와서 동일한 명령을 내리기 위해 아래 명령을 내 렸습니다.
docker exec <container_id/name>
/ usr / bin / mysqldump -u <db_username>
--password = <db_password>
db_name
> .sql
도움이 되었기를 바랍니다!
이 스크립트를 사용 하여 다음 링크에 제공된 터미널에서 데이터베이스 를 내보내거나 가져올 수 있습니다. https://github.com/Ridhwanluthra/mysql_import_export_script/blob/master/mysql_import_export_script.sh
echo -e "Welcome to the import/export database utility\n"
echo -e "the default location of mysqldump file is: /opt/lampp/bin/mysqldump\n"
echo -e "the default location of mysql file is: /opt/lampp/bin/mysql\n"
read -p 'Would like you like to change the default location [y/n]: ' location_change
read -p "Please enter your username: " u_name
read -p 'Would you like to import or export a database: [import/export]: ' action
echo
mysqldump_location=/opt/lampp/bin/mysqldump
mysql_location=/opt/lampp/bin/mysql
if [ "$action" == "export" ]; then
if [ "$location_change" == "y" ]; then
read -p 'Give the location of mysqldump that you want to use: ' mysqldump_location
echo
else
echo -e "Using default location of mysqldump\n"
fi
read -p 'Give the name of database in which you would like to export: ' db_name
read -p 'Give the complete path of the .sql file in which you would like to export the database: ' sql_file
$mysqldump_location -u $u_name -p $db_name > $sql_file
elif [ "$action" == "import" ]; then
if [ "$location_change" == "y" ]; then
read -p 'Give the location of mysql that you want to use: ' mysql_location
echo
else
echo -e "Using default location of mysql\n"
fi
read -p 'Give the complete path of the .sql file you would like to import: ' sql_file
read -p 'Give the name of database in which to import this file: ' db_name
$mysql_location -u $u_name -p $db_name < $sql_file
else
echo "please select a valid command"
fi