thinkbot
- Total activity 275
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 67
Comments
Recent activity by thinkbot-
so check litespeed error log
-
its error from apache/php which handler you use ? mod_php, fastcgi ? you should check apache/php error logs
-
Based on that table_cache (> 5000) table_cache=10000 [!!] InnoDB data size / buffer pool: 1.0G/256.0M innodb_buffer_pool_size (>= 1G) It seems like you got different my.cnf, and didn't restart ...
-
based on ping check dmesg and /var/log/messages if nothing is there related kernel/network card issues then you have some hardware (network card) problems or network problems in datacenter for th...
-
this query_cache_limit = 16M query_cache_size = 16M to query_cache_size=50M query_cache_limit=1M this innodb_buffer_pool_size=1536M to innodb_buffer_pool_size=400M add there too tmp_table_s...
-
You need to post at least mysqltuner tool report to give you some suggestions
-
That blog post is from February 14, 2007, on mysql version 5.0 In your case 1,5G would be more than enough, but this is max option, we set it max 5G, so when needed it will increase to this number
-
[mysqld] local-infile=0 myisam_use_mmap=1 join_buffer_size=1M read_rnd_buffer_size=2M query_cache_type = 1 query_cache_size=50M query_cache_limit=1M tmp_table_size=50M max_heap_table_size=50M t...
-
change my.cnf to [mysqld] max_connections=75 innodb_file_per_table=1 default-storage-engine=MyISAM open_files_limit=5000 myisam_use_mmap=1 wait_timeout = 60 connect_timeout = 2 query_cache_type ...
-
uncomment this #key_buffer_size = 1G to key_buffer_size = 1200M and add under it max_connections = 100 query_cache_type = 1 query_cache_size = 50M query_cache_limit ...