mySQL占用虚拟内存达8百多兆问题解决思路
为了装mysql环境测试,装上后发现启动后mysql占用了很大的虚拟内存,达8百多兆,需要的朋友可以参考下
为了装mysql环境测试,装上后发现启动后mysql占用了很大的虚拟内存,达8百多兆。网上搜索了一下,得到高人指点my.ini。再也没见再详细的了..只好打开my.ini逐行的啃,虽然英文差了点,不过多少M还是看得明的^-^更改后如下:
innodb_buffer_pool_size=576M ->256M InnoDB引擎缓冲区占了大头,首要就是拿它开刀
query_cache_size=100M ->16M 查询缓存
tmp_table_size=102M ->64M 临时表大小
key_buffer_size=256m ->32M
重启mysql服务后,虚拟内存降到200以下.
另外mysql安装目录下有几个文件:my-huge.ini 、my-large.ini、my-medium.ini...这几个是根据内存大小作的建议配置,新手在设置的时候也可以参考一下。
2G内存的MYSQL数据库服务器 my.ini优化 (my.ini)
2G内存,针对站少,优质型的设置,试验特:
table_cache=1024 物理内存越大,设置就越大.默认为2402,调到512-1024最佳
innodb_additional_mem_pool_size=8M 默认为2M
innodb_flush_log_at_trx_commit=0 等到innodb_log_buffer_size列队满后再统一储存,默认为1
innodb_log_buffer_size=4M 默认为1M
innodb_thread_concurrency=8 你的服务器CPU有几个就设置为几,默认为8
key_buffer_size=256M 默认为218 调到128最佳
tmp_table_size=64M 默认为16M 调到64-256最挂
read_buffer_size=4M 默认为64K
read_rnd_buffer_size=16M 默认为256K
sort_buffer_size=32M 默认为256K
max_connections=1024 默认为1210
试验一:
table_cache=512或1024
innodb_additional_mem_pool_size=2M
innodb_flush_log_at_trx_commit=0
innodb_log_buffer_size=1M
innodb_thread_concurrency=8 你的服务器CPU有几个就设置为几,默认为8
key_buffer_size=128M
tmp_table_size=128M
read_buffer_size=64K或128K
read_rnd_buffer_size=256K
sort_buffer_size=512K
max_connections=1024
试验二:
table_cache=512或1024
innodb_additional_mem_pool_size=8M
innodb_flush_log_at_trx_commit=0
innodb_log_buffer_size=4M
innodb_thread_concurrency=8
key_buffer_size=128M
tmp_table_size=128M
read_buffer_size=4M
read_rnd_buffer_size=16M
sort_buffer_size=32M
max_connections=1024
一般:
table_cache=512
innodb_additional_mem_pool_size=8M
innodb_flush_log_at_trx_commit=0
innodb_log_buffer_size=4M
innodb_thread_concurrency=8
key_buffer_size=128M
tmp_table_size=128M
read_buffer_size=4M
read_rnd_buffer_size=16M
sort_buffer_size=32M
max_connections=1024
经过测试.没有特殊情况,最好还是用默认的.
2G内存,针对站多,抗压型的设置,最佳:
table_cache=1024 物理内存越大,设置就越大.默认为2402,调到512-1024最佳
innodb_additional_mem_pool_size=4M 默认为2M
innodb_flush_log_at_trx_commit=1
(设置为0就是等到innodb_log_buffer_size列队满后再统一储存,默认为1)
innodb_log_buffer_size=2M 默认为1M
innodb_thread_concurrency=8 你的服务器CPU有几个就设置为几,建议用默认一般为8
key_buffer_size=256M 默认为218 调到128最佳
tmp_table_size=64M 默认为16M 调到64-256最挂
read_buffer_size=4M 默认为64K
read_rnd_buffer_size=16M 默认为256K
sort_buffer_size=32M 默认为256K
max_connections=1024 默认为1210
thread_cache_size=120 默认为60
query_cache_size=64M
优化mysql数据库性能的十个参数
(1)、max_connections:
允许的同时客户的数量。增加该值增加 mysqld 要求的文件描述符的数量。这个数字应该增加,否则,你将经常看到 too many connections 错误。 默认数值是100,我把它改为1024 。
(2)、record_buffer:
每个进行一个顺序扫描的线程为其扫描的每张表分配这个大小的一个缓冲区。如果你做很多顺序扫描,你可能想要增加该值。默认数值是131072(128k),我把它改为16773120 (16m)
(3)、key_buffer_size:
索引块是缓冲的并且被所有的线程共享。key_buffer_size是用于索引块的缓冲区大小,增加它可得到更好处理的索引(对所有读和多重写),到你能负担得起那样多。如果你使它太大,系统将开始换页并且真的变慢了。默认数值是8388600(8m),我的mysql主机有2gb内存,所以我把它改为 402649088(400mb)。
4)、back_log:
要求 mysql 能有的连接数量。当主要mysql线程在一个很短时间内得到非常多的连接请求,这就起作用,然后主线程花些时间(尽管很短)检查连接并且启动一个新线程。
back_log 值指出在mysql暂时停止回答新请求之前的短时间内多少个请求可以被存在堆栈中。只有如果期望在一个短时间内有很多连接,你需要增加它,换句话说,这值对到来的tcp/ip连接的侦听队列的大小。你的操作系统在这个队列大小上有它自己的限制。试图设定back_log高于你的操作系统的限制将是无效的。
当你观察你的主机进程列表,发现大量 264084 | unauthenticated user | xxx.xxx.xxx.xxx | null | connect | null | login | null 的待连接进程时,就要加大 back_log 的值了。默认数值是50,我把它改为500。
(5)、interactive_timeout:
服务器在关闭它前在一个交互连接上等待行动的秒数。一个交互的客户被定义为对 mysql_real_connect()使用 client_interactive 选项的客户。 默认数值是28800,我把它改为7200。
(6)、sort_buffer:
每个需要进行排序的线程分配该大小的一个缓冲区。增加这值加速order by或group by操作。默认数值是2097144(2m),我把它改为 16777208 (16m)。
(7)、table_cache:
为所有线程打开表的数量。增加该值能增加mysqld要求的文件描述符的数量。mysql对每个唯一打开的表需要2个文件描述符。默认数值是64,我把它改为512。
(8)、thread_cache_size:
可以复用的保存在中的线程的数量。如果有,新的线程从缓存中取得,当断开连接的时候如果有空间,客户的线置在缓存中。如果有很多新的线程,为了提高性能可以这个变量值。通过比较 connections 和 threads_created 状态的变量,可以看到这个变量的作用。我把它设置为 80。
(9)mysql的搜索功能
用mysql进行搜索,目的是能不分大小写,又能用中文进行搜索
只需起动mysqld时指定 --default-character-set=gb2312
(10)、wait_timeout:
服务器在关闭它之前在一个连接上等待行动的秒数。 默认数值是28800,我把它改为7200。
注:参数的调整可以通过修改 /etc/my.cnf 文件并重启 mysql 实现。这是一个比较谨慎的工作,上面的结果也仅仅是我的一些看法,你可以根据你自己主机的硬件情况(特别是内存大小)进一步修改。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Virtual memory is a technology that can make up for the lack of software memory and provide a better user experience. However, some users may not know how to set virtual memory after upgrading to Windows 11 system. In order to solve this problem, the editor of this site provides you with the latest setting method. If you need to know the complete steps, please visit this site for details. How to set virtual memory in win11 1. First, press the win button on the keyboard, click to find and enter the setting page. 3. Then, find the advanced system setting options in the relevant links. 5. In the page after the jump, find the virtual memory and click the change button.

The biggest problem that many friends encounter when playing Red Dead Redemption 2 is the prompt that virtual memory is insufficient. So how to solve this problem? Today I have brought you a solution to take a look at. What to do if there is insufficient virtual memory in Red Dead Redemption 2 on Windows 10: 1. Right-click this computer and click "Properties". 2. Click "Advanced System Settings" on the left. 3. Then click "Advanced" and then "Settings". 4. Click "Advanced" in Performance and select "Change" under Virtual Memory. 5. Cancel the √ in front of "Automatically manage paging file size for all drives", click "Custom size", enter the value, and click Set.

Depends on the size of physical memory. Specific suggestions: 1. According to Microsoft’s recommendations, virtual memory should be set to 1.5-3 times the physical memory capacity; 2. If the physical memory is 2G, the virtual memory should be set to 3G=3072MB; if the physical memory is 4G, then the virtual memory The memory should be set to 6G=6144MB; 3. It is usually recommended to set the virtual memory to 1.5 to 2 times the total computer memory; 4. It is generally similar to the physical memory.

If you notice a certain amount of lag when running high-end applications or games, it could be that the RAM/memory is generally running full. This is where you increase the virtual memory or page file size in Windows 11. Virtual memory or page file is one of the most misunderstood concepts and there are many myths surrounding it. No matter what anyone else says or does, it's important to thoroughly understand how to get the best performance from your computer. In the following sections, we'll walk you through the steps to increase virtual memory in Windows 11, helping you understand its importance and the optimal virtual memory size. Why do you need virtual memory? The page file or virtual memory is basically the part of the hard drive that is used as RAM. When memory is full and cannot store more data

If your computer doesn't have enough RAM or is always full, you can rely on virtual memory to unload inactive files from physical memory. However, if this doesn't go well, you may need to reset virtual memory in Windows 11. We often see our computers lagging, most likely due to high RAM usage in Windows 11. There are ways to reduce RAM consumption, but this may affect your experience. And, this is where virtual memory can help. Sometimes it is necessary to reset virtual memory in Windows 11, therefore, it is essential to understand the concept and process correctly, which we discuss in the following sections. How does virtual memory work and why do I need to re-

What is the appropriate setting for 16G virtual memory? Virtual memory is a technology in computer systems that can improve the operating efficiency of the system by using part of the hard disk space as an expansion of memory. For the operating system, virtual memory is a very important resource. It can be used to store temporarily unnecessary data, thereby freeing up physical memory for use by other programs. So, for a computer with 16G of physical memory, how to set the size of virtual memory? The size of virtual memory is automatically managed by the operating system, but we can also manually

In fact, the so-called virtual memory is actually a large special area carved out for it on the hard disk, which is used by the Windows system as memory. How can you set the ideal virtual memory size? What is the appropriate virtual memory setting for win10? Answer: The most appropriate virtual memory setting for win10 is 1.5 times the physical memory. This is only a reference value. The specific setting method depends on the actual situation. The minimum setting range is 1-1.5 times the physical memory, and the maximum is no more than 2-2.5 times the physical memory. For the specific setting method, click the link on the right to view details. content. (Win10 virtual memory setting method) Which drive is best to set win10 virtual memory on? Answer: Win10 virtual memory is best set on C drive. because

Recently, many users have reported that the computer's own physical memory already has 8G or even 16G. However, when using the program, a prompt of insufficient virtual memory will still pop up, and the system will also become very stuck. So how should we solve this situation? ? Next, I will give you a detailed introduction to the specific operations to solve the problem of insufficient virtual memory in Win10. Friends in need should take a look. 1 Right-click this computer on the desktop and select "Properties", as shown in the figure below: Click to enter the picture description (up to 30 words) 2. Then in the pop-up window, select "Advanced System Settings", as shown in the figure below: Click to enter Image description (maximum 30 words) 3. In the system properties window that pops up, select the "Settings" button under Performance, as shown below: Click to enter the image description (maximum
