我正试图像这样把数据库从一台服务器复制到另一台服务器
mysqldump -u<source_db_username> -p<source_db_password> -h<source_db_ip_address> source_database_name
| mysql -u<target_db_username> -p<target_db_password> -h<aws_rds_endpoint> <aws_rds_db_name>;
但我明白了
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server
version for the right syntax to use near 'mysqldump -u<source_db_username> -p<source_db_password>
-h<source_db_ip_address> source_database_name ' at line 1
1条答案
按热度按时间slsn1g291#
我不应该在复制时使用数据库,我只需要引用mysql位置就可以使用它,不应该使用';'在命令结束时,它正在工作。