成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Mysql之參數(shù)優(yōu)化了解-創(chuàng)新互聯(lián)

目前創(chuàng)新互聯(lián)已為1000多家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管維護(hù)、企業(yè)網(wǎng)站設(shè)計(jì)、通道網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶(hù)導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶(hù)和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。一、優(yōu)化的配置文件

[client]
port=3306
socket=/tmp/mysql.sock

[mysqld]

# Remove leading # and set to the amount of RAM for the most important data
# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.
innodb_buffer_pool_size = 3G

# Remove leading # to turn on a very important data integrity option: logging
# changes to the binary log between backups.
# log_bin

# These are commonly set, remove the # and set as required.
user = mysql
basedir = /app/mysql
datadir = /app/mysql/data
port=3307
server-id = 1
socket=/tmp/mysql.sock

#允許創(chuàng)建函數(shù)
log_bin_trust_function_creators = 1

character-set-server = utf8
#log-error = /var/log/mysql/error.log
#pid-file = /var/log/mysql/mysql.pid
general_log = 1
skip-name-resolve
#skip-networking
back_log = 300

max_connections = 1000
max_connect_errors = 6000
open_files_limit = 65535
table_open_cache = 4096 
max_allowed_packet = 100M
binlog_cache_size = 10M
max_heap_table_size = 32M
tmp_table_size = 64M

read_buffer_size = 8M
read_rnd_buffer_size = 8M
sort_buffer_size = 8M
join_buffer_size = 128M
key_buffer_size = 8M

thread_cache_size = 64

query_cache_type = 1
query_cache_size = 128M
query_cache_limit = 2M

ft_min_word_len = 4

log_bin = mysql-bin
binlog_format = mixed
expire_logs_days = 30

performance_schema = 0
explicit_defaults_for_timestamp

lower_case_table_names = 1

myisam_sort_buffer_size = 8M
myisam_repair_threads = 1

interactive_timeout = 28800
wait_timeout = 28800

# Remove leading # to set options mainly useful for reporting servers.
# The server defaults are faster for transactions and fast SELECTs.
# Adjust sizes as needed, experiment to find the optimal values.
# join_buffer_size = 128M
# sort_buffer_size = 2M
# read_rnd_buffer_size = 2M

# Disabling symbolic-links is recommended to prevent assorted security risks
symbolic-links=0

# Recommended in standard MySQL setup
sql_mode=NO_ENGINE_SUBSTITUTION,NO_AUTO_CREATE_USER,STRICT_TRANS_TABLES

[mysqldump]
quick
max_allowed_packet = 16M

二、參數(shù)解釋查看

max_connections = 1000             #客戶(hù)端連接數(shù)
max_connect_errors = 6000        #錯(cuò)誤連接數(shù)
-----
mysql> show variables like '%conn%';
+-----------------------------------------------+-----------------+
| Variable_name                                 | Value           |
+-----------------------------------------------+-----------------+
| character_set_connection                      | utf8            |
| collation_connection                          | utf8_general_ci |
| connect_timeout                               | 10              |
| disconnect_on_expired_password                | ON              |
| init_connect                                  |                 |
| max_connect_errors                            | 6000            |
| max_connections                               | 1000            |
| max_user_connections                          | 0               |
| performance_schema_session_connect_attrs_size | 0               |
+-----------------------------------------------+-----------------+
9 rows in set (0.01 sec)
-----
查看系統(tǒng)當(dāng)前連接數(shù)
mysql> show status like 'Threads%';
+-------------------+-------+
| Variable_name     | Value |
+-------------------+-------+
| Threads_cached    | 9     |
| Threads_connected | 3     |    #連接數(shù)
| Threads_created   | 12    |
| Threads_running   | 2     |
+-------------------+-------+
4 rows in set (0.01 sec)
----------------------------------------------------------------------------------------------------
table_open_cache=4096     
#通常此值需要大于Opened_tables值
查看當(dāng)前Opened_tables值
mysql> show status like '%Opened%';
+--------------------------+-------+
| Variable_name            | Value |
+--------------------------+-------+
| Opened_files             | 2979  |
| Opened_table_definitions | 1     |
| Opened_tables            | 1     |         #對(duì)比
+--------------------------+-------+
3 rows in set (0.00 sec)
----------------------------------------------------------------------------------------------------
max_heap_table_size = 32M
tmp_table_size = 64M
#參考文檔:/tupian/20230521/85341.htm
mysql> show status like '%created_tmp%';      #查看當(dāng)前情況
+-------------------------+-------+
| Variable_name           | Value |
+-------------------------+-------+
| Created_tmp_disk_tables | 2921  |
| Created_tmp_files       | 11    |
| Created_tmp_tables      | 8476  |
+-------------------------+-------+
3 rows in set (0.00 sec)
----------------------------------------------------------------------------------------------------
read_buffer_size = 8M
read_rnd_buffer_size = 8M
sort_buffer_size = 8M
join_buffer_size = 128M
key_buffer_size = 8M
參考文檔:/tupian/20230521/84170.htm

----------------------------------------------------------------------------------------------------
innodb_buffer_pool_size = 3G                #較大建議值為內(nèi)存的75%

---------------------------------------------------------------------------------------------------
thread_cache_size = 64
系統(tǒng)參數(shù):
mysql> show global status like 'Threads_%';
+-------------------+-------+
| Variable_name     | Value |
+-------------------+-------+
| Threads_cached    | 9     |         #這就是thread_cache_size
| Threads_connected | 3     |
| Threads_created   | 12    |
| Threads_running   | 2     |
+-------------------+-------+
4 rows in set (0.00 sec)
參考文檔:/tupian/20230521/upgrade

---------------------------------------------------------------------------------------------------
query_cache_type = 1
query_cache_size = 128M
query_cache_limit = 2M

mysql> SHOW VARIABLES LIKE 'have_query_cache'; 
+------------------+-------+
| Variable_name    | Value |
+------------------+-------+
| have_query_cache | YES   |
+------------------+-------+
1 row in set (0.00 sec)

mysql> SHOW STATUS LIKE 'Qcache%'; 
+-------------------------+-----------+
| Variable_name           | Value     |
+-------------------------+-----------+
| Qcache_free_blocks      | 1         |
| Qcache_free_memory      | 134200384 |
| Qcache_hits             | 0         |
| Qcache_inserts          | 0         |
| Qcache_lowmem_prunes    | 0         |
| Qcache_not_cached       | 6         |
| Qcache_queries_in_cache | 0         |
| Qcache_total_blocks     | 1         |
+-------------------------+-----------+
8 rows in set (0.00 sec)

參考文檔:https://blog.csdn.net/u014044812/article/details/78924315

名稱(chēng)欄目:Mysql之參數(shù)優(yōu)化了解-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)鏈接:http://jinyejixie.com/article34/csdepe.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、小程序開(kāi)發(fā)用戶(hù)體驗(yàn)、標(biāo)簽優(yōu)化電子商務(wù)、網(wǎng)站改版

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

微信小程序開(kāi)發(fā)
安丘市| 巩义市| 泽库县| 宜阳县| 虎林市| 莱西市| 精河县| 兰西县| 顺义区| 大悟县| 阳朔县| 永仁县| 清镇市| 务川| 女性| 杭锦后旗| 翼城县| 长子县| 伊吾县| 八宿县| 会昌县| 晋城| 阳西县| 眉山市| 牙克石市| 张家口市| 迭部县| 宜丰县| 丽江市| 迁安市| 濮阳县| 娱乐| 昆山市| 嘉祥县| 米林县| 乌拉特中旗| 宣化县| 阿城市| 清丰县| 舞阳县| 惠安县|