1. 程式人生 > >Mysql:備份提示Using a password on the command line interface

Mysql:備份提示Using a password on the command line interface

問題:

使用mysqldump備份警告:Warning: Using a password on the command line interface can be insecure.

原因:

mysql 5.6版本之後,使用 mysqldump dbName -r - p > backup.sql 會報警告。官方解釋是因為安全原因。

解決辦法:

  1. 找到my.ini檔案
  2. 將以下程式碼寫入檔案:
	[mysqld]
	port = 3306
	sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES 
	skip-grant-tables
	[client]
	host=localhost
	user=root
	password=root
  1. 在原有的基礎上新增client部分,檔案中user與password引數根據自己實際情況更改;
  2. 備份語句更改為:mysqldump --defaults-extra-file=my.ini shop > d:\time_2018-11-13_18-32-15.sql
  3. file後的路徑為你的my.ini檔案的路徑