真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

mysql怎么運用日志,怎么查看mysql的運行日志

如何在mysql中記錄sql日志記錄

1、WIN的話,在安裝目錄下,找到my.ini文件

10余年的湖口網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。成都全網(wǎng)營銷的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整湖口建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。創(chuàng)新互聯(lián)從事“湖口網(wǎng)站設(shè)計”,“湖口網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。

查[mysqld]區(qū)段,添加日志的配置

比如說:[mysqld]log=C:/temp/mysql.log

log_slow_queries=C:/temp/mysql_slow.log

long_query_time=1

log指示日志文件存放目錄

log_slow_queries指示記錄執(zhí)行時間長的sql日志目錄;

long_query_time指示多長時間算是執(zhí)行時間。

2、LINUX下的話,文件名為my.cnf

Linux下這些配置項其實都有的,只是被注釋掉了,刪去注釋符#之類的就可以了。

你不愿刪注釋符,愿意的話手工再添加也可以……

然后重啟mysql服務(wù)就OK了。

怎么開啟mysql日志功能

1)怎么查看mysql是否啟用了日志

mysqlshow variables like 'log_bin';

2)怎樣知道當前的日志

mysql show master status;

3)如何查看當前的二進制日志,可以使用mysqlbinlog的的工具,命令如下:

shellmysqlbinlog mail-bin.000001(要寫絕對問題路徑 d://)

或者shellmysqlbinlog mail-bin.000001 | tail

4)mysql有以下幾種日志:

錯誤日志:????

-log-err

查詢?nèi)罩荆????

-log

慢查詢?nèi)罩????

-log-slow-queries

更新日志:?????

-log-update

二進制日志:?

-log-bin

在mysql的安裝目錄下,打開my.ini,在后面加上上面的參數(shù),保存后重啟mysql服務(wù)就行了。

例如:

#Enter a name for the error

log file.?? Otherwise a default

name will be used.

log-error=err.log

#Enter a name for the query

log file. Otherwise a default name will be used.

#log=

#Enter a name for the slow

query log file. Otherwise a default name will be used.

#log-slow-queries=

#Enter a name for the update

log file. Otherwise a default name will be used.

#log-update=

#Enter a name for the binary

log. Otherwise a default name will be used.

#log-bin=

上面只開啟了錯誤日志,要開其他的日志就把前面的“#”去掉。

long_query_time =2--

這里設(shè)置慢日志的最大實現(xiàn)是指執(zhí)行超過多久的sql會被log下來,這里是2秒

log-slow-queries=slowqueris.log --將查詢返回較慢的語句進行記錄,這里設(shè)置慢日志的名稱

log-queries-not-using-indexes

= nouseindex.log --就是字面意思,log下來沒有使用索引的query

5)下面是配置日志的幾種方式,不一定全都要配置,請根據(jù)自身需求選擇性配置

log=mylog.log

--對所有執(zhí)行語句進行記錄

log-error=log-error.log

log=log-query.log

log-queries-not-using-indexes

log-warnings=2

log-slow-queries=log-slow-query.log

log-update=log-update.log

long_query_time=2

如何在MySql中記錄SQL日志記錄

查了一下資料,My SQL可以用下面方法跟蹤sql 語句,以下方法以Windows平臺為例,linux雷同:

1 配置my.ini文件(在安裝目錄,linux下文件名為my.cnf

查找到[mysqld]區(qū)段,增加日志的配置,如下示例:[mysqld]log=C:/temp/mysql.log

log_slow_queries=C:/temp/mysql_slow.log

long_query_time=1

log指示日志文件存放目錄;

log_slow_queries指示記錄執(zhí)行時間長的sql日志目錄;

long_query_time指示多長時間算是執(zhí)行時間長,單位s。

Linux下這些配置項應(yīng)該已經(jīng)存在,只是被注釋掉了,可以去掉注釋。但直接添加配置項也OK啦。

2 重新啟動mysql服務(wù)。注意事項:A日志存放目錄必須提前存在,否則不能記錄日志。這里也局勢C:/temp目錄必須已經(jīng)存在

B 日志文件是linux格式的文本,建議用ultraEdit打開,轉(zhuǎn)換為dos格式查看(否則沒有換行,看不懂的)

C 服務(wù)在啟動狀態(tài)下不能刪除日志文件,否則就無法記錄sql語句了。

D 不能用ultraEdit直接清除文件內(nèi)容后保存,否則也記錄不下來了。需要重啟服務(wù),如果ultraEdit保存了.bak,后記錄到此文件中。

E 可以用notepad清除文本后保存,可以繼續(xù)記錄日志。

mysql如何使用事物日志ib

,查看Mysqld(/var/log/mysqld.log)日志,發(fā)現(xiàn)以下錯誤:

InnoDB: Error: log file /usr/local/mysql/data/ib_logfile0 is of different size 0

5242880 bytes

InnoDB: than specified in the .cnf file 0 104857600 bytes!

030826 1:42:15 Can't init databases

030826 1:42:15 Aborting

2,解決辦法

"

If you want to change the number or the size of your InnoDB log files, you

have to shut down MySQL and make sure that it shuts down without errors.

Then copy the old log files into a safe place just in case something went

wrong in the shutdown and you will need them to recover the database. Delete

then the old log files from the log file directory, edit my.cnf, and start

MySQL again. InnoDB will tell you at the startup that it is creating new log

files.

"

在你修改my.cnf的innodb_log_file_size參數(shù)前,請先停止mysql服務(wù)程序的運行(mysql的停止沒有出現(xiàn)任何錯誤),并把/var/lib/mysql目錄下的ib_logfile0、ib_logfile1、ib_logfile2等之類的文件移除到一個安全的地方(舊日志文件的保留是為了防止意外的出現(xiàn)),以便Mysql重啟后可以將新的ib_logfile0之類日志文件生成到/var/lib/mysql目錄下。如果沒有什么意外,舊的日志文件可以刪除。


網(wǎng)站題目:mysql怎么運用日志,怎么查看mysql的運行日志
文章轉(zhuǎn)載:http://weahome.cn/article/dscsssi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部