Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下命令导出数据库,但是执行命令后我找不到FILE.sql文件。它存储在哪里?
# mysqldump -u username -ppassword database_name > FILE.sql
请尝试删除 -u 和用户名之间的空格:
mysqldump -uusername -ppassword database_name > FILE.sql
FILE.sql 应存储在执行命令的同一文件夹中。如果您不知道,请尝试指定文件的完整路径,即:
mysqldump -uusername -ppassword database_name > $HOME/FILE.sql
然后你应该FILE.sql在你的 HOME 目录中。
FILE.sql