zoukankan      html  css  js  c++  java
  • Mysql Error Code : 1436 Thread stack overrun

    简介:这是Mysql Error Code : 1436 Thread stack overrun的详细页面,介绍了和php,有关的知识、技巧、经验,和一些php源码等。

    class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=339824' scrolling='no'>

    I meet with the error while calling stored procedures from the MySql in my Mac. It similar as the description below:

    ERRNO: 256 
    TEXT: SQLSTATE[HY000]: General error: 1436 Thread stack overrun: 4904 bytes used of a 131072 byte stack, and 128000 bytes needed. Use 'mysqld -O thread_stack=#' to specify a bigger stack. 

    According to the MySQL manual “The default (192KB) is large enough for normal operation. If the thread stack size is too small, it limits the complexity of the SQL statements that the server can handle, the recursion depth of stored procedures, and other memory-consuming actions” .

    To resolve this issue you need to change the default value of parameter 'thread_stack' in /etc/my.cnf  in your MySQL configuration file. I use the XAMPP for php/mysql development. 


    Once you set this value you need to restart MySQL as this value cannot be set dynamically.

    you maybe also encounter with the message when you try to modify the my.cnf

    "Cannot open file for writing: Permission denied"

    We will try to use the 'chmod' instruction to change permission as usually. I seldom take the concrete permission into consideration, so I use always use the 'chmod 777'. but it resulted in another errors when I use the phpmyadmin, another tools included in XAMPP, after running 'chmod 777'.


    After googling it, I get this file (my.cnf) permissions has to be 600. I change its permission and it works well now.

    爱J2EE关注Java迈克尔杰克逊视频站JSON在线工具

    http://biancheng.dnbcw.info/php/339824.html pageNo:7
  • 相关阅读:
    LOL 计蒜客
    cf1486 D. Max Median
    P3567 [POI2014]KUR-Couriers
    dp 求物品组合情况
    黑暗爆炸
    hdu5306 Gorgeous Sequence
    P4609 [FJOI2016]建筑师
    cf 1342 E. Placing Rooks
    重修dp-背包
    acwing 2154. 梦幻布丁
  • 原文地址:https://www.cnblogs.com/ooooo/p/2245252.html
Copyright © 2011-2022 走看看