我收到了这个错误:
Bad SQL query Incorrect key file for table '/tmp/#sql_659_0.MYI'; try to repair it
因此,在this suggesttion之后,我尝试编辑:
sort_buffer_size=4M
join_buffer_size=4M
但我找不到他们。它们位于Ubuntu 14.04机器上的哪个位置? /etc/mysql/my.cnf
答案 0 :(得分:1)
你可以在终端上运行命令find / -name my.cnf
。这将按照提到的那样工作here
答案 1 :(得分:0)
答案 2 :(得分:0)
如果您只想更改正在运行的实例中的值(只需从任何地方将其作为查询启动):
SET @FourMegs = 1024 * 1024 * 4;
SET GLOBAL sort_buffer_size = @FourMegs;
SET GLOBAL join_buffer_size = @FourMegs;