本篇文章為大家展示了MySQL中怎么調(diào)整日志組,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
創(chuàng)新互聯(lián)建站長(zhǎng)期為上千余家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開(kāi)放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為龍山企業(yè)提供專(zhuān)業(yè)的成都網(wǎng)站制作、成都做網(wǎng)站,龍山網(wǎng)站改版等技術(shù)服務(wù)。擁有十載豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開(kāi)發(fā)。
1、查看關(guān)閉方式:
mysql> show variables like '%fast%';
+----------------------+-------+
| Variable_name | Value |
+----------------------+-------+
| innodb_fast_shutdown | 1 |
+----------------------+-------+
1 row in set (0.00 sec)
該參數(shù)解釋如下:,默認(rèn)值為1,設(shè)置為0 是干凈的關(guān)閉 和ORACLE里面shutdown immeidate對(duì)應(yīng)
The InnoDB shutdown mode. If the value is 0, InnoDB does a slow shutdown, a full purge and a change buffer merge before shutting down. If the value is 1 (the default), InnoDB skips these operations at shutdown, a process known as a fast shutdown. If the value is 2, InnoDB flushes its logs and shuts down cold, as if MySQL had crashed; no committed transactions are lost, but the crash recovery operation makes the next startup take longer.。
2、調(diào)整參數(shù)innodb_fast_shutdown為0
set global innodb_fast_shutdown=0
3、關(guān)閉MYSQL
mysqladmin -uroot shutdown -S /home/mysql-5.6/mysql-3306/mysql.sock
4、調(diào)整REDO大小,日志文件默認(rèn)命名是ib_logfile開(kāi)頭
1、找到REDO文件所在目錄(有幾個(gè)文件處理幾個(gè),移動(dòng)到其他目錄)。
mv ib_logfilexx ../ ib_logfilexx
2、添加參數(shù):日志組個(gè)數(shù)和日志大小到參數(shù)文件
在參數(shù)文件[mysqld]下面添加如下參數(shù)
innodb_log_file_size = 512M –每個(gè)日志組大小512M
innodb_log_files_in_group = 3—一共3組日志組
5、 打開(kāi)mysql
./mysqld_safe --defaults-file=/home/mysql-5.6/mysql-3307/my.cnf &
6、查看修改后的日志組大小和個(gè)數(shù)
mysql> show variables like '%log_file%';
+---------------------------+------------------------------------------------+
| Variable_name | Value |
+---------------------------+------------------------------------------------+
| general_log_file | /home/mysql-5.6/mysql-3306/data/test1.log |
| innodb_log_file_size | 536870912 |
| innodb_log_files_in_group | 3 |
| slow_query_log_file | /home/mysql-5.6/mysql-3306/data/test1-slow.log |
+---------------------------+------------------------------------------------+
4 rows in set (0.00 sec)
上述內(nèi)容就是MYSQL中怎么調(diào)整日志組,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
網(wǎng)頁(yè)題目:MYSQL中怎么調(diào)整日志組
地址分享:http://www.rwnh.cn/article14/jdghde.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、定制開(kāi)發(fā)、網(wǎng)站改版、外貿(mào)建站、微信公眾號(hào)、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)