1、修改mysql日志路徑
vim /etc/my.cnf
log-bin = mysql-bin
修改為:
log-bin = /$PATH/mysql-bin
修改完畢後,保存退出。
修改mysql-bin.index文件,修改其中現有日志的路徑。
默認為:./mysql-bin.....
修改為:/$PATH/mysql-bin....
全部替換後即可重啟mysql服務,否則會重啟出錯。
2、問題:Error: 'Lost connection to MySQL server at 'reading initial communication packet', system error: 113' errno: 2013 retry-time: 30 retries: 86400
解決辦法:在 my.cnf 裡面的 [mysqld] 段增加一個啟動參數
skip-name-resolve
保存重啟即可。 skip-name-resolve 選項可以禁用dns解析。
3、問題:Error reading packet from server: Access denied; you need the REPLICATION SLAVE privilege for this operation ( server_errno=1227)
解決辦法:主服務器給的復制權限不夠,重新賦予權限。
grant replication slave on *.* to 'replication'@'ip地址' identified by '密碼';
flush privileges;
遠程重新測試即正常。
後續添加中。。
本文出自 “我的運維之路” 博客