mysql性能優化之優化配置my.cnf文件

来源:http://www.cnblogs.com/NiceTime/archive/2017/05/13/6848132.html
-Advertisement-
Play Games

[client]#password = your_passwordport = 3306socket = /opt/mysql/dbdata/mysql.sock # The MySQL server[mysqld]port = 3306socket = /opt/mysql/dbdata/mysq ...


[client]
#password = your_password
port = 3306
socket = /opt/mysql/dbdata/mysql.sock

# The MySQL server
[mysqld]
port = 3306
socket = /opt/mysql/dbdata/mysql.sock
skip-external-locking
key_buffer_size = 384M
max_allowed_packet = 1M
table_open_cache = 512

#sort_buffer_size = 2M
sort_buffer_size = 256M

#read_buffer_size = 2M
read_buffer_size = 32M

#read_rnd_buffer_size = 8M
read_rnd_buffer_size = 32M

myisam_sort_buffer_size = 64M

thread_cache_size = 8
query_cache_size= 32M

#開啟慢查詢日誌
log_slow_admin_statements=ON
log_slow_slave_statements=ON
slow_query_log=1

#慢查詢日誌文件存放路徑
slow_query_log_file=/opt/mysql/mysqllog/logfile/slow-query.log

#執行的時間大於多少秒的SQL語句記錄到慢查詢日誌
long_query_time=2

#未使用索引的查詢也記錄到文件
log_queries_not_using_indexes = 1

#日誌記錄寫到日誌文件
log_output='FILE'


#數據連接等待時間,單位秒
interactive_timeout = 1800
wait_timeout = 1800

basedir = /opt/mysql/product
datadir = /opt/mysql/dbdata
max_binlog_size=100M
log_bin=/opt/mysql/mysqllog/binlog/binlog.bin
log-error=/opt/mysql/mysqllog/logfile/mysql-err.log

binlog_format=mixed
expire_logs_days=7
binlog_cache_size=4MB

pid-file = /opt/mysql/dbdata/mysql.pid
default-storage-engine=MyISAM

user = mysql

group_concat_max_len = 10240
max_connections=3000

#(cpu+磁碟)數量的2倍
#thread_concurrency = 8
thread_concurrency = 24

# Point the following paths to a dedicated disk
#tmpdir = /tmp/
#skip-networking

log-bin=mysql-bin

server-id = 1

#server-id = 2
#
# The replication master for this slave - required
#master-host = <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user = <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password = <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port = <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin
#
# binary logging format - mixed recommended
binlog_format=mixed


#使用 InnoDB 引擎,可開啟以下配置項
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /opt/mysql/dbdata
#innodb_data_file_path = ibdata1:10M:autoextend
#innodb_log_group_home_dir = /opt/mysql/dbdata

#數據和索引緩衝區的大小
#innodb_buffer_pool_size = 256M
#innodb_buffer_pool_size = 10240M

#數據欄位和其他數據結構的大小
#innodb_additional_mem_pool_size = 20M
#innodb_additional_mem_pool_size = 20M

# Set .._log_file_size to 25 % of buffer pool size
#redo日誌大小
#innodb_log_file_size = 64M
#innodb_log_file_size = 2560M

#日誌緩衝區的大小
#innodb_log_buffer_size = 8M
#innodb_log_buffer_size = 16M

#0 提交事物不寫入日誌,每秒日誌文件寫入和flush磁碟
#1 每秒或每次事物提交時,日誌文件寫入 flush磁碟
#2 每次事物提交時,日誌文件寫入,每秒flush磁碟
#innodb_flush_log_at_trx_commit = 1
#innodb_flush_log_at_trx_commit = 1

#innodb_lock_wait_timeout = 50

[mysqldump]
quick
max_allowed_packet = 16M

[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates

[myisamchk]
#key_buffer_size = 128M
#sort_buffer_size = 128M
#read_buffer = 2M
#write_buffer = 2M

key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 32M
write_buffer = 32M

[mysqlhotcopy]
interactive-timeout

[mysqlhotcopy]
interactive-timeout


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1、安裝Java 這裡需要註意對環境變數的設置,可以根據Java -version來檢測一下,jdk最好是1.8以上 2、安裝SDK 這裡需要註意設置環境變數ANDROID_HOME:Android SDK Manager的位置 例如:(ANDROID_HOME=> E:\Android\sdk)設 ...
  • 下載Charles Proxy 4.1.2版本,百度雲盤下載 或 去官網下載 安裝後先打開Charles一次(Windows版可以忽略此步驟) 在這個網站下載破解文件 charles.jar 替換掉原文件夾里的charles.jar Mac: /Applications/Charles.app/Co ...
  • 1.去官網下載免費試用版: http://www.charlesproxy.com/ (需要機器有Java運行時)或下載破解註冊版:http://charles.iiilab.com/,安裝後開啟預設代理埠為 本機IP:8888 , 比如: 192.168.43.240:8888 2.手機端htt ...
  • 參考自文章:http://www.runoob.com/w3cnote/android-tutorial-textview.html 1.基礎屬性詳解: id:為TextView設置一個組件id,根據id,我們可以在Java代碼中通過findViewById()的方法獲取到該對象,然後進行相關屬性的 ...
  • 今天寫答疑係統的時候,寫了這樣一截代碼: <?php session_start(); $db=mysqli_connect('localhost','root','root','qa'); $tname=$_POST['teacher']; $q="select schedule,place fr ...
  • 1、2003 - can't connect to MySQL server on 'localhost' (10060) 關閉防火牆即可。 2、1067 - Invalid default value for 'state' 修改資料庫(必須刪除才能修改,創建資料庫時輸入名稱的下一個選擇框就是進行 ...
  • 安裝mysqlsla源碼路徑:https://github.com/daniel-nichter/hackmysql.com源碼存放路徑:/usr/local/src1、獲取源碼如果沒有git命令,請先安裝gityum install git cd /usr/local/src git clone ...
  • 查詢當前這周的數據 SELECT name,submittime FROM enterprise WHERE YEARWEEK(date_format(submittime,'%Y-%m-%d')) = YEARWEEK(now()); 查詢上周的數據 SELECT name,submittime ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...