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.
当我尝试在 Linux 中进行数据库备份时,出现此错误,
“出现错误:1296:使用 LOCK TABLE 时从 NDBCLUSTER 收到错误 157‘未知错误代码’”
有人可以指导我如何解决这个错误。
谢谢。
从 linux shell 执行以下命令以进行数据库转储(备份)
mysqldump -p -u[username] --no-lock-tables [database]>dumpfile.sql
将 [username] 和 [database] 替换为您的相应凭据,例如:
mysqldump -p -uroot --no-lock-tables mydb>dumpfile.sql