ChinaUnix.net
相关文章推荐:

Error Can't create a new thread errno 12 if you are not out of available memory you can consult the

这段时间我服务器理的DISCUZ 反复出现下列错误,请教请教........ 环境: iis6+php5.2.1+discuz6.0+mysql5.0.45 php.ini 设置 (disucz同时在线人数3000以上) 错误现象: error: can't create a new thread (errno 12); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug errno.: 1135 Similar error report has beed dispatched to administrator before. ==================...

by 微笑的牛 - MySQL - 2008-01-19 16:42:41 阅读(4346) 回复(3)

相关讨论

调整my.ini参数后,将程序开启,然后在本机连接mysql服务器后报错: can't create a new thread (errno 12); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug OS:WINDOWS SERVER 2003 CPU:8核xeon2.66G 内存:4G 本机只跑mysql数据库, 主要调整的参数值 innodb_buffer_pool_size=1500M key_buffer_size=64M thread_cache_size=400 max_connections=1024 原先的几个值是 innodb_...

by leoxqing - MySQL - 2009-11-17 08:42:34 阅读(2202) 回复(4)

这段时间我服务器理的DISCUZ 反复出现下列错误,请教请教........ 环境: iis6+php5.2.1+discuz6.0+mysql5.0.45 ======================================== my.ini max_connections=1300 ================ php.ini memory_limit 512M(disucz同时在线人数3000以上) 错误现象: error: can't create a new thread (errno 12); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug...

by 微笑的牛 - PHP - 2008-06-28 16:19:14 阅读(2455) 回复(4)

在下初学。请多指点 操作如下 mysql> create table sales_rep2( -> id int auto_increment primary key, -> employee_number int(11), -> surname varchar(40), -> birthday date -> ) TYPE =MyISAM; Query OK, 0 rows affected, 1 warning (0.06 sec) mysql> create table sales_rep12( -> id int auto_increment primary key, -> employee_number int(11), -> surname varchar(40), -> bi...

by guojian - SQL server - 2005-10-31 08:10:29 阅读(3736) 回复(4)

1.故障状态描述 自己在做压力测试出现如下现象: mysql -uroot -p Enter password: error 1135: can't create a new thread (errno 11). If you are not out of available memory, you can consult the manual for a possible OS-dependent bug [@rhas31 ]$ perror 11 System error: 11 = Resource temporarily unavailable mysql 命令行无法连接数据库 ps -efw|grep mysql|wc 891 13354 204625 mysql并发连接数量较大,有890个. ...

by wujing168 - Linux文档专区 - 2009-04-03 11:10:22 阅读(2680) 回复(0)

failed: can't create a new thread (errno 11); if you are not out of available memory, you can consult the manual for a possible OS-dependent bug 超过可用内存?这个内存是怎么算的呢? my.cnf如下: key_buffer = 384M max_allowed_packet = 1M table_cache =512 sort_buffer_size = 2M read_buffer_size = 2M read_rnd_buffer_size = 4M myisam_sort_buffer_size = 64M thread_cache = 8 query_cache_size= 32M max_...

by yybmsrs - MySQL - 2010-11-05 15:41:29 阅读(3362) 回复(3)

环境: 1、服务器配置 E5405 2.0 8核 4G 内存  2、CesntOS 5.2 3、mysql Ver 14.7 Distrib 4.1.22, for pc-linux-gnu (i686) using EditLine wrapper 4、my.cnf 配置 如下: skip-locking skip-name-resolve back_log = 384 key_buffer = 384M max_allowed_packet = 4M thread_stack = 256K table_cache = 1024 sort_buffer_size = 32M read_buffer_size = 32M join_buffer_size = 32M read_rnd_buffer_size ...

by gron - 数据库应用 - 2009-07-30 17:34:50 阅读(2191) 回复(1)

前两天搞mysql的东西,用mysql提供的C API 访问,遇到些问题,在这里分享一下,希望对其他人有帮助。 用mysql C API 调用存储过程,并返回结果集。需要注意几个问题: 在建立链接的时候要加选项CLIENT_MULTI_STATEMENTS 或 CLIENT_MULTI_RESULTS,以便可以让query执行多个语句。 mysql_real_connect(mySQL,serverIP,user,password,database,serverPort,NULL,CLIENT_MULTI_STATEMENTS) 当query时可能产生错误error:2014 Co...

by sss0213 - MySQL文档中心 - 2009-05-31 16:31:12 阅读(3644) 回复(0)

mysql4.0.20,导出表结构,再重新导入,就报error 1005: can't create table (errno: 150)错误。 修改导出的sql文件,在最前面加上set foreign_key_checks=0; 这个错误就解决了,看来是建外键的原因。被关联的表还没有创建,导致外键建不起来。 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/25477/showart_354634.html

by gladness - MySQL文档中心 - 2007-08-06 15:07:01 阅读(998) 回复(0)

今天工作时遇到一个这样的错误,当我执行 [code]create TABLE `currency` ( `id` tinyint(3) unsigned NOT NULL auto_increment, `name` varchar(4) NOT NULL default '', PRIMARY KEY (`id`), UNIQUE KEY `name_index` (`name`) ) TYPE=InnoDB;[/code] mysql提示我error 1005: can't create table './test/currency.frm' (errno: 121) 我在网上查到了这个资料,但是仍然无法解决 http://bugs.mysql.com/bug.php?id=5574 ...

by musicbell - MySQL - 2008-07-05 00:33:07 阅读(16825) 回复(4)