How do I resolve a mysql Thread Stack Overrun?

ぃ、小莉子 提交于 2019-11-29 14:16:46

I was an idiot. I reset the thread_stack to a higher number, but i didn't restart the server. restarting resolved the problem.

If you're using Ubuntu 14.04 you can increase your MySQL thread stack here:

/etc/mysql/my.cnf

and change this value thread_stack which might have a value like this, for example:

thread_stack = 192K

After that you need to restart MySQL like so:

sudo service mysql restart

Refer to the Ubuntu 14.04, MySQL documentation for more info.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!