如何修改MySQL記錄檔位置?

來源:互聯網
上載者:User

MySQL記錄檔相信大家都有很多的瞭解,MySQL記錄檔一般在:/var/log/mysqld.log,下面就教您修改MySQL記錄檔位置的方法,供您參考。

今天需要改MySQL記錄檔的位置,發現在/etc/my.cnf中怎麼也改不了。

後來發現MySQL日誌位是指定的:

[root@localhost etc]# ps auxgrep mysqld  
root     11830 0.5 0.0   4524 1204 pts/0    S    03:03   0:00 /bin/sh /usr/bin/mysqld_safe --datadir=/data/mysql --socket=/var/lib/mysql/mysql.sock --log-error=/var/log/mysqld.log --pid-file=/var/run/mysqld/mysqld.pid
mysql    11890 3.7 0.1 40456 9076 pts/0    Sl   03:03   0:00 /usr/libexec/mysqld --basedir=/usr --datadir=/data/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-external-locking --port=3306 --socket=/var/lib/mysql/mysql.sock
root     11909 0.0 0.0   3908   664 pts/0    S+   03:03   0:00 grep mysqld

chkconfig --list發現是chkconfig on指定的,天是

vim /etc/init.d/mysqld得知這裡的已經配置

get_mysql_option mysqld datadir "/var/lib/mysql"
datadir="$result"
get_mysql_option mysqld socket "$datadir/mysql.sock"
socketfile="$result"
get_mysql_option mysqld_safe log-error "/var/log/mysqld.log"
errlogfile="$result"
get_mysql_option mysqld_safe pid-file "/var/run/mysqld/mysqld.pid"
mypidfile="$result"

更改這裡應該就行了




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.